Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 2.11 KB

user_instance_profile.md

File metadata and controls

53 lines (36 loc) · 2.11 KB
subcategory
Security

databricks_user_instance_profile Resource

-> Deprecated Please rewrite with databricks_user_role. This resource will be removed in v0.5.x

This resource allows you to attach databricks_instance_profile (AWS) to databricks_user.

Example Usage

resource "databricks_instance_profile" "instance_profile" {
  instance_profile_arn = "my_instance_profile_arn"
}

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

resource "databricks_user_instance_profile" "my_user_instance_profile" {
  user_id             = databricks_user.my_user.id
  instance_profile_id = databricks_instance_profile.instance_profile.id
}

Argument Reference

The following arguments are supported:

  • user_id - (Required) This is the id of the user resource.
  • instance_profile_id - (Required) This is the id of the instance profile resource.

Attribute Reference

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

  • id - The id in the format <user_id>|<instance_profile_id>.

Import

-> Note Importing this resource is not currently supported.

Related Resources

The following resources are often used in the same context: