File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
modules/beta-autopilot-private-cluster Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,8 @@ resource "google_container_cluster" "primary" {
85
85
enabled = var. enable_vertical_pod_autoscaling
86
86
}
87
87
enable_fqdn_network_policy = var. enable_fqdn_network_policy
88
+ enable_cilium_clusterwide_network_policy = var. enable_cilium_clusterwide_network_policy
89
+
88
90
enable_autopilot = true
89
91
dynamic "master_authorized_networks_config" {
90
92
for_each = local. master_authorized_networks_config
Original file line number Diff line number Diff line change @@ -399,6 +399,12 @@ variable "enable_fqdn_network_policy" {
399
399
default = null
400
400
}
401
401
402
+ variable "enable_cilium_clusterwide_network_policy" {
403
+ type = bool
404
+ description = " Enable Cilium cluster-wide network policy."
405
+ default = false
406
+ }
407
+
402
408
variable "security_posture_mode" {
403
409
description = " Security posture mode. Accepted values are `DISABLED` and `BASIC`. Defaults to `DISABLED`."
404
410
type = string
You can’t perform that action at this time.
0 commit comments