Last active
September 8, 2017 11:18
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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