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 #74 from gruntwork-io/tf_syntax_fix
Browse files Browse the repository at this point in the history
Fix terraform validation issues
  • Loading branch information
autero1 authored Dec 18, 2019
2 parents f870f63 + fcff346 commit a32244a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/gke-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
# ---------------------------------------------------------------------------------------------------------------------

resource "google_container_cluster" "cluster" {
provider = "google-beta"
provider = google-beta

name = var.name
description = var.description
Expand Down Expand Up @@ -129,7 +129,7 @@ resource "google_container_cluster" "cluster" {
ignore_changes = [
# Since we provide `remove_default_node_pool = true`, the `node_config` is only relevant for a valid construction of
# the GKE cluster in the initial creation. As such, any changes to the `node_config` should be ignored.
"node_config",
node_config,
]
}

Expand Down

0 comments on commit a32244a

Please sign in to comment.