Add option to use custom service linked role for Auto Scaling group (#359)

This commit is contained in:
Võ Anh Duy
2019-04-29 16:45:56 +08:00
committed by Max Williams
parent d4be9f4710
commit 18baeea1fc
3 changed files with 9 additions and 6 deletions

View File

@@ -84,6 +84,7 @@ locals {
target_group_arns = "" # A comma delimited list of ALB target group ARNs to be associated to the ASG
enabled_metrics = "" # A comma delimited list of metrics to be collected i.e. GroupMinSize,GroupMaxSize,GroupDesiredCapacity
placement_group = "" # The name of the placement group into which to launch the instances, if any.
service_linked_role_arn = "" # Arn of custom service linked role that Auto Scaling group will use. Useful when you have encrypted EBS
}
workers_group_launch_template_defaults = "${merge(local.workers_group_launch_template_defaults_defaults, var.workers_group_launch_template_defaults)}"