Skip to content

Instantly share code, notes, and snippets.

@drzero42
Last active September 8, 2017 11:18
Show Gist options
  • Save drzero42/ebc14c702b2f10572fcd70354110fd03 to your computer and use it in GitHub Desktop.
Save drzero42/ebc14c702b2f10572fcd70354110fd03 to your computer and use it in GitHub Desktop.
Manifest that results in error when upgrading node_version - terraform-google-provider v0.1.3
provider "google" {
project = "my-project"
region = "europe-west1"
}
resource "google_container_cluster" "cluster" {
name = "tf-container-cluster-upgrade-bug"
node_version = "1.6.9"
#node_version = "1.7.5"
zone = "europe-west1-b"
initial_node_count = "1"
}
resource "google_container_node_pool" "worker" {
name = "worker-pool"
zone = "europe-west1-b"
initial_node_count = "1"
cluster = "${google_container_cluster.cluster.name}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment