Skip to content

Commit 2bdab87

Browse files
committed
fixed formatting issue...
1 parent 98ede7c commit 2bdab87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

local.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ locals {
33
cluster_security_group_id = "${var.cluster_security_group_id == "" ? aws_security_group.cluster.id : var.cluster_security_group_id}"
44
worker_security_group_id = "${var.worker_security_group_id == "" ? aws_security_group.workers.id : var.worker_security_group_id}"
55
workstation_external_cidr = "${chomp(data.http.workstation_external_ip.body)}/32"
6-
workstation_cidr = "${coalesce(var.workstation_cidr, local.workstation_external_cidr)}"
6+
workstation_cidr = "${coalesce(var.workstation_cidr, local.workstation_external_cidr)}"
77

88
# Mapping from the node type that we selected and the max number of pods that it can run
99
# Taken from https://amazon-eks.s3-us-west-2.amazonaws.com/1.10.3/2018-06-05/amazon-eks-nodegroup.yaml

0 commit comments

Comments
 (0)