We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5339e13 commit 4a6ed7aCopy full SHA for 4a6ed7a
tf/service_cluster/container.tf
@@ -60,7 +60,7 @@ resource "google_container_cluster" "main" {
60
private_ipv6_google_access = var.private_ipv6_google_access
61
62
# Seems like backend enforces subsetting on dual stack
63
- enable_l4_ilb_subsetting = var.ip_allocation_policy == "IPV4_IPV6"
+ enable_l4_ilb_subsetting = var.ip_allocation_policy == null ? false : var.ip_allocation_policy.stack_type == "IPV4_IPV6"
64
65
lifecycle {
66
ignore_changes = [
0 commit comments