Skip to content

Commit

Permalink
fix: resolve small clusters compute policy and legacy shared policy (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jayengee authored Sep 4, 2024
1 parent 649a6c6 commit cc3643b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions databricks-default-cluster-policies/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ module "legacy_shared_compute_cluster_policy" {
"data_security_mode" : {
"type" : "fixed",
"hidden" : true,
"value" : "USER_ISOLATION"
"value" : "NONE"
}
})
}
Expand Down Expand Up @@ -354,7 +354,7 @@ module "small_clusters" {
databricks_host = var.databricks_host
databricks_workspace_id = var.databricks_workspace_id
policy_name = "${var.policy_name_prefix}Small Clusters"
policy_family_id = local.default_policy_family_ids["personal_compute"]
policy_family_id = local.default_policy_family_ids["power_user_compute"]
policy_overrides = merge(local.logging_override, {
"autoscale.max_workers" : {
"type" : "range",
Expand Down

0 comments on commit cc3643b

Please sign in to comment.