Ignore changes to node count because auto scaling.

This commit is contained in:
Tom Alexander
2021-07-09 02:09:42 -04:00
parent b6e9923374
commit 0826402fcb

View File

@@ -199,6 +199,12 @@ resource "google_container_node_pool" "primary" {
} }
} }
lifecycle {
ignore_changes = [
node_count
]
}
depends_on = [ depends_on = [
google_project_service.container google_project_service.container
] ]