terraform-aws-autoscaling
terraform-aws-autoscaling copied to clipboard
Terraform module to create AWS Auto Scaling resources πΊπ¦
## Description I'm currently updating some stacks that use autoscaling modules from v`4.11.0` to `5.0.0` (I'll have to deal with launch config -> launch templates to go any further). Between...
## Description This is pretty trivial. `warm_pool` was changed to a `map(string)` in https://github.com/terraform-aws-modules/terraform-aws-autoscaling/commit/8e2e285b031faafe298de5d1d738e9743e607b3d but the values of the map are not strings. They can be numbers, or other maps.....
## Description Once the lifecycle hook is created, if you change the `default_result` or `heartbeat_timeout` then it will not be reflected on ASG, only the state file updated. ## Versions...
## Description In case the value of `launch_template_name` changes, a new launch template will be created but the auto scaling group still points to the old launch template. If you...
## Description The IAM profile is not being set on the EC2 instance. create_iam_instance_profile = false iam_instance_profile_arn = "arn:aws:iam::ACCT:role/role_name_here" ## β οΈ Note Before you submit an issue, please perform the...
## Description Hello, We migrate code from: ``` target_group_arns = [module.alb.outputs.target_groups["front_backend"].arn] ``` to ``` create_traffic_source_attachment = true traffic_source_identifier = module.alb.outputs.target_groups["front_backend"].arn traffic_source_type = "elbv2" ``` But this change add like 2...
## Description Given an autoscaling group that defines lifecycle hooks and attaches a role policy of AutoScalingFullAccess... ```hcl initial_lifecycle_hooks = [ { name = "StartupLifeCycleHook" lifecycle_transition = "autoscaling:EC2_INSTANCE_LAUNCHING" }, {...
## Description When setting create_iam_instance_profile, the module fails. If your request is for a new feature, please use the `Feature request` template. - [x] β I have searched the open/closed...
## Description Multiple traffic source attachments per AutoScaling Group are now possible ## Motivation and Context Ability to connect multiple Load Balancers to the same group ## Breaking Changes Input...
## Description Right now, it's not possible to create `aws_autoscaling_policy` because it will fail on validation (no target group attached). ``` Error: creating Auto Scaling Policy (request-count-per-target): operation error Auto...