We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Unity Catalog private preview will add account-level roles, starting with account_admin
account_admin
This would require calling the SCIM API, similar to user_instance_profile. However, the ARN is currently validated so it does not work
provider "databricks" { host = "https://accounts.cloud.databricks.com" account_id = var.account_id username = var.user password = var.password } resource "databricks_user" "my_user" { user_name = "me@example.com" } resource "databricks_user_role" "my_user_account_admin" { user_id = databricks_user.my_user.id role = "account_admin" }
This will create the me@example.com user at account-level, and assign the account admin role to my user
The text was updated successfully, but these errors were encountered:
@nkvuong you've forgotten to add account_id on provider ;)
account_id
are you sure we don't need databricks_group_role as well?
databricks_group_role
Sorry, something went wrong.
we don't have role assignment to group yet, but could future proof it, as SCIM API is well known?
We may just add "roles" attribute to users :) though it might be more fragile.
No branches or pull requests
Unity Catalog private preview will add account-level roles, starting with
account_admin
This would require calling the SCIM API, similar to user_instance_profile. However, the ARN is currently validated so it does not work
Configuration
Expected Behavior
This will create the me@example.com user at account-level, and assign the account admin role to my user
The text was updated successfully, but these errors were encountered: