I can create account groups in Terraform as follows:
resource "databricks_group" "dev_perception" {
provider = databricks.mws
display_name = "Perception"
}
Or I can create a workspace group, using the workspace provider instead of the account provider:
resource "databricks_group" "dev_perception" {
provider = databricks.dev_workspace
display_name = "Perception"
}
However, the latter mechanism seems to be obsolete, b/c the UI only allows you to create account level groups.
What I would like to do is:
- Create the account level group
- Then, associate it to a workspace (so I can actually use it)
I can do this association in the UI. But how can I do the association in Terraform? I'd like to avoid mixing manual config with Terraform config.