Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
Merge pull request #9 from gruntwork-io/module-design-test-fix
Browse files Browse the repository at this point in the history
Configuration fixes for tests
robmorgan authored Jan 17, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents f4c7520 + aa783e3 commit a895a81
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/gke-regional-public-cluster/main.tf
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ resource "google_container_node_pool" "node_pool" {
name = "main-pool"
project = "${var.project}"
region = "${var.region}"
cluster = "${var.cluster_name}"
cluster = "${module.gke_cluster.name}"
initial_node_count = "1"

autoscaling {
2 changes: 1 addition & 1 deletion modules/gke-cluster/main.tf
Original file line number Diff line number Diff line change
@@ -117,6 +117,6 @@ resource "random_shuffle" "available_zones" {
Get available container engine versions
*****************************************/
data "google_container_engine_versions" "region" {
zone = "${data.google_compute_zones.available.names[0]}"
region = "${var.region}"
project = "${var.project}"
}

0 comments on commit a895a81

Please sign in to comment.