terraform-provider-databricks
terraform-provider-databricks copied to clipboard
[ISSUE] Issue with `databricks_metastore_data_access` resource - arguments are not flowing in
Configuration
# Copy-paste your Terraform configuration here
resource "databricks_metastore_data_access" "this" {
provider = databricks.mws
metastore_id = databricks_metastore.this.id
name = local.iam_role_name
owner = "name-principals-group"
isolation_mode = "ISOLATION_MODE_ISOLATED"
aws_iam_role {
role_arn = local.iam_role_arn
}
is_default = true
force_destroy = true
}
Expected Behavior
According to the documentation, arguments for databricks_metastore_data_access follow databricks_storage_credentials. I expect setting arguments in databricks_metastore_data_access will be reflected in the final storage credentials.
Actual Behavior
owner and isolation_mode are not respected and do not flow into the resulting storage credentials.
Steps to Reproduce
Just apply steps to build metastore.
Terraform and provider versions
Terraform v1.12.0 provider databricks=1.82.0
Is it a regression?
I don't think so
Debug Output
N/A
Important Factoids
N/A