databricks_group Data Source

Retrieves information about databricks_group members, entitlements and instance profiles.

Example Usage

Adding user to administrative group

data "databricks_group" "admins" {
  display_name = "admins"
}

resource "databricks_user" "me" {
  user_name = "me@example.com"
}

resource "databricks_group_member" "my_member_a" {
  group_id  = data.databricks_group.admins.id
  member_id = databricks_user.me.id
}

Argument Reference

Data source allows you to pick groups by the following attributes

Attribute Reference

Data source exposes the following attributes:

The following resources are used in the same context: