From fcff3460845fa83d895437e6db04965c02843eee Mon Sep 17 00:00:00 2001 From: Petri Autero Date: Wed, 18 Dec 2019 10:50:21 +0200 Subject: [PATCH] Fix terraform validation issues --- modules/gke-cluster/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gke-cluster/main.tf b/modules/gke-cluster/main.tf index 393a22a..08bfaec 100644 --- a/modules/gke-cluster/main.tf +++ b/modules/gke-cluster/main.tf @@ -18,7 +18,7 @@ terraform { # --------------------------------------------------------------------------------------------------------------------- resource "google_container_cluster" "cluster" { - provider = "google-beta" + provider = google-beta name = var.name description = var.description @@ -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, ] }