From 3d50463cfe4e5d48c9a960c21b45c1aeed5e35d2 Mon Sep 17 00:00:00 2001 From: jimbecker Date: Wed, 27 Jun 2018 12:49:50 -0400 Subject: [PATCH] fixed incorrect variable reference --- local.tf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/local.tf b/local.tf index ef71665..999a987 100644 --- a/local.tf +++ b/local.tf @@ -4,8 +4,7 @@ locals { # Followed recommendation http://67bricks.com/blog/?p=85 # to workaround terraform not supporting short circut evaluation cluster_security_group_id = "${coalesce(join("", aws_security_group.cluster.*.id), var.cluster_security_group_id)}" - - worker_security_group_id = "${coalesce(join("", aws_security_group.workers.*.id), var.cluster_security_group_id)}" + worker_security_group_id = "${coalesce(join("", aws_security_group.workers.*.id), var.worker_security_group_id)}" workstation_external_cidr = "${chomp(data.http.workstation_external_ip.body)}/32" # Mapping from the node type that we selected and the max number of pods that it can run