fixed formatting error

This commit is contained in:
jimbecker
2018-06-27 11:57:19 -04:00
parent 59ced5fdb4
commit 5902fe0fbc

View File

@@ -1,8 +1,10 @@
locals {
asg_tags = ["${null_resource.tags_as_list_of_maps.*.triggers}"]
asg_tags = ["${null_resource.tags_as_list_of_maps.*.triggers}"]
# Followed recommendation http://67bricks.com/blog/?p=85 to workaround terraform not supporting short circut evaluation
# 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)}"
workstation_external_cidr = "${chomp(data.http.workstation_external_ip.body)}/32"