Skip to content

Commit

Permalink
fix(autopilot): ignore gcfs null (#2049)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Aug 21, 2024
1 parent 352057c commit 5e0de62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion autogen/main/cluster.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ resource "google_container_cluster" "primary" {
{% endif %}
{% if autopilot_cluster == true %}
lifecycle {
ignore_changes = [node_pool_defaults[0].node_config_defaults[0].gcfs_config[0].enabled]
ignore_changes = [node_pool_defaults[0].node_config_defaults[0].gcfs_config[0]]
}
{% endif %}

Expand Down
2 changes: 1 addition & 1 deletion modules/beta-autopilot-private-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ resource "google_container_cluster" "primary" {
}

lifecycle {
ignore_changes = [node_pool_defaults[0].node_config_defaults[0].gcfs_config[0].enabled]
ignore_changes = [node_pool_defaults[0].node_config_defaults[0].gcfs_config[0]]
}

timeouts {
Expand Down
2 changes: 1 addition & 1 deletion modules/beta-autopilot-public-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ resource "google_container_cluster" "primary" {
}

lifecycle {
ignore_changes = [node_pool_defaults[0].node_config_defaults[0].gcfs_config[0].enabled]
ignore_changes = [node_pool_defaults[0].node_config_defaults[0].gcfs_config[0]]
}

timeouts {
Expand Down

0 comments on commit 5e0de62

Please sign in to comment.