Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] Fix attribute name in databricks_instance_profile examples #4426

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/resources/instance_profile.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ resource "databricks_cluster_policy" "this" {
# most likely policy might have way more things init.
"aws_attributes.instance_profile_arn" : {
"type" : "fixed",
"value" : databricks_instance_profile.shared.arn
"value" : databricks_instance_profile.shared.id
}
})
}
Expand All @@ -96,7 +96,7 @@ You can make instance profile available to all users by [associating it](group_i

```hcl
resource "databricks_instance_profile" "this" {
instance_profile_arn = aws_iam_instance_profile.shared.arn
instance_profile_arn = aws_iam_instance_profile.shared.id
}

data "databricks_group" "users" {
Expand Down
Loading