Skip to content

Commit

Permalink
Update variable
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinbuss committed Feb 12, 2024
1 parent bce6455 commit 7af3567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/infra/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,15 @@ variable "synapse_workspace_sql_pool_maintenance_windows" {

# ML variables
variable "machine_learning_compute_clusters" {
type = map(optional(object({
type = map(object({
vm_priority = optional(string, "Dedicated")
vm_size = optional(string, "Standard_DS2_v2")
scale = optional(object({
min_node_count = optional(any, 0)
max_node_count = optional(any, 3)
scale_down_nodes_after_idle_duration = optional(string, "PT60S")
}), {})
}), {}))
}))
sensitive = false
default = {}
description = "Specifies the compute cluster to be created for the Machine Learning Workspace."
Expand Down

0 comments on commit 7af3567

Please sign in to comment.