Skip to content

Commit

Permalink
gke-cluster-standard : Set optional shielded_instance_config block in…
Browse files Browse the repository at this point in the history
… cluster_autoscaling.auto_provisioning_defaults
  • Loading branch information
noony committed Dec 7, 2023
1 parent fa76644 commit 568982d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/gke-cluster-standard/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ variable "cluster_autoscaling" {
auto_repair = optional(bool, true)
auto_upgrade = optional(bool, true)
}))
shielded_instance_config = object({
shielded_instance_config = optional(object({
integrity_monitoring = optional(bool, true)
secure_boot = optional(bool, false)
})
}))
}))
cpu_limits = optional(object({
min = number
Expand Down

0 comments on commit 568982d

Please sign in to comment.