Skip to content

Commit a969c21

Browse files
committed
feat: Ignoring target_group_arns
1 parent af1a0d9 commit a969c21

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
# AWS Auto Scaling Group (ASG) Terraform module
1+
# Caution before using this module
2+
3+
- Forked from [`terraform-aws-autoscale`](https://registry.terraform.io/modules/terraform-aws-modules/autoscaling/aws/latest)!
4+
- Origin Version is `v7.2.0`, now.
5+
- Just Added: ignoring `target_group_arns`
6+
7+
## AWS Auto Scaling Group (ASG) Terraform module
28

39
Terraform module which creates Auto Scaling resources on AWS.
410

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ resource "aws_autoscaling_group" "idc" {
869869

870870
lifecycle {
871871
create_before_destroy = true
872-
ignore_changes = [desired_capacity]
872+
ignore_changes = [desired_capacity, target_group_arns]
873873
}
874874
}
875875

0 commit comments

Comments
 (0)