Skip to content

Commit

Permalink
Fix regional cluster example (#2385)
Browse files Browse the repository at this point in the history
Update regional cluster example to point cluster to google_container_cluster.regional.name rather than google_container_cluster.primary.name
  • Loading branch information
dkoston authored and rileykarson committed Nov 13, 2018
1 parent 8a19222 commit 1a2b104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/r/container_node_pool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ resource "google_container_cluster" "regional" {
resource "google_container_node_pool" "regional-np" {
name = "my-node-pool"
region = "us-central1"
cluster = "${google_container_cluster.primary.name}"
cluster = "${google_container_cluster.regional.name}"
node_count = 1
}
Expand Down

0 comments on commit 1a2b104

Please sign in to comment.