Created
August 10, 2020 15:28
-
-
Save nfx/39be6e0b60a45896a514e25441a7043f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# modules/databricks-cluster-policy/main.tf | |
variable "team" { | |
description = "Team that performs the work" | |
} | |
variable "policy_overrides" { | |
description = "Cluster policy overrides" | |
} | |
locals { | |
default_policy = { | |
"dbus_per_hour" : { | |
"type" : "range", | |
"maxValue" : 10 | |
}, | |
"instance_pool_id" : { | |
"type" : "forbidden", | |
"hidden" : true | |
}, | |
"spark_conf.spark.databricks.io.cache.enabled": { | |
"type": "fixed", | |
"value": "true" | |
}, | |
"autotermination_minutes": { | |
"type": "fixed", | |
"value": 20, | |
"hidden": true | |
}, | |
"custom_tags.Team" : { | |
"type" : "fixed", | |
"value" : var.team | |
} | |
} | |
} | |
resource "databricks_cluster_policy" "fair_use" { | |
name = "${var.team} cluster policy" | |
definition = jsonencode(merge(local.default_policy, var.policy_overrides)) | |
} | |
resource "databricks_permissions" "can_use_instance_profile" { | |
cluster_policy_id = databricks_cluster_policy.fair_use.id | |
access_control { | |
group_name = var.team | |
permission_level = "CAN_USE" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module "marketing" { | |
source = "../modules/databricks-cluster-policy" | |
team = "email marketing" | |
policy_overrides = { | |
// only marketing guys will benefit from delta cache this way | |
"spark_conf.spark.databricks.io.cache.enabled": { | |
"value": "true" | |
}, | |
} | |
} | |
module "engineering" { | |
source = "../modules/databricks-cluster-policy" | |
team = "engineering" | |
policy_overrides = { | |
"dbus_per_hour" : { | |
"type" : "range", | |
// only engineering guys can spin up big clusters | |
"maxValue" : 50 | |
}, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment