fix default worker subnets not working (#122)

This commit is contained in:
Touch Ungboriboonpisal
2018-09-11 09:03:23 -07:00
committed by Max Williams
parent 4762908d9b
commit 50404a785b
3 changed files with 3 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ locals {
enable_monitoring = true # Enables/disables detailed monitoring.
public_ip = false # Associate a public ip address with a worker
kubelet_extra_args = "" # This string is passed directly to kubelet if set. Useful for adding labels or taints.
subnets = "" # A comma delimited string of subnets to place the worker nodes in. i.e. subnet-123,subnet-456,subnet-789
subnets = "${join(",", var.subnets)}" # A comma delimited string of subnets to place the worker nodes in. i.e. subnet-123,subnet-456,subnet-789
autoscaling_enabled = false # Sets whether policy and matching tags will be added to allow autoscaling.
additional_security_group_ids = "" # A comman delimited list of additional security group ids to include in worker launch config
}