diff --git a/autogen/main/cluster.tf.tmpl b/autogen/main/cluster.tf.tmpl index f2d3af61f5..b4fcd80ae3 100644 --- a/autogen/main/cluster.tf.tmpl +++ b/autogen/main/cluster.tf.tmpl @@ -480,11 +480,6 @@ resource "google_container_cluster" "primary" { ignore_changes = [node_pool, initial_node_count, resource_labels["asmv"]] } {% endif %} - {% if autopilot_cluster == true %} - lifecycle { - ignore_changes = [node_pool_defaults[0].node_config_defaults[0].gcfs_config[0]] - } - {% endif %} {% if autopilot_cluster != true %} dynamic "dns_config" { diff --git a/modules/beta-autopilot-private-cluster/cluster.tf b/modules/beta-autopilot-private-cluster/cluster.tf index 04f55c1fca..7472b09941 100644 --- a/modules/beta-autopilot-private-cluster/cluster.tf +++ b/modules/beta-autopilot-private-cluster/cluster.tf @@ -261,9 +261,6 @@ resource "google_container_cluster" "primary" { } } - lifecycle { - ignore_changes = [node_pool_defaults[0].node_config_defaults[0].gcfs_config[0]] - } timeouts { create = lookup(var.timeouts, "create", "45m") diff --git a/modules/beta-autopilot-public-cluster/cluster.tf b/modules/beta-autopilot-public-cluster/cluster.tf index 639cb7a97e..bc65225fcc 100644 --- a/modules/beta-autopilot-public-cluster/cluster.tf +++ b/modules/beta-autopilot-public-cluster/cluster.tf @@ -261,9 +261,6 @@ resource "google_container_cluster" "primary" { } } - lifecycle { - ignore_changes = [node_pool_defaults[0].node_config_defaults[0].gcfs_config[0]] - } timeouts { create = lookup(var.timeouts, "create", "45m")