Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 2.43 KB

File metadata and controls

50 lines (35 loc) · 2.43 KB
subcategory
Security

databricks_group_role Resource

This resource allows you to attach Role ARN (AWS) to databricks_group.

Example Usage

resource "databricks_group" "my_group" {
  display_name = "my_group_name"
}

resource "databricks_group_role" "my_group_role" {
  group_id  = databricks_group.my_group.id
  role  = "arn:aws:iam::000000000000:role/my-role"
}

Argument Reference

The following arguments are supported:

  • group_id - (Required) This is the id of the group resource.
  • role - (Required) This is the AWS role ARN.

Attribute Reference

In addition to all arguments above, the following attributes are exported:

  • id - The id for the databricks_group_role object which is in the format <group_id>|<role>.

Import

-> Note Importing this resource is not currently supported.

Related Resources

The following resources are often used in the same context: