Allow adding SSH keys to worker ASGs

This commit is contained in:
Igor Borodin
2018-06-14 14:51:37 +03:00
parent 9d3b5caff4
commit b075388ebe
2 changed files with 2 additions and 0 deletions

View File

@@ -56,6 +56,7 @@ variable "workers_group_defaults" {
asg_max_size = "3" # Maximum worker capacity in the autoscaling group.
asg_min_size = "1" # Minimum worker capacity in the autoscaling group.
instance_type = "m4.large" # Size of the workers instances.
key_name = "" # The key name that should be used for the instances in the autoscaling group
additional_userdata = "" # userdata to append to the default userdata.
ebs_optimized = true # sets whether to use ebs optimization on supported types.
}