Skip to content

Commit

Permalink
feat: Ignoring target_group_arns
Browse files Browse the repository at this point in the history
  • Loading branch information
kkumtree committed Nov 16, 2023
1 parent af1a0d9 commit a969c21
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# AWS Auto Scaling Group (ASG) Terraform module
# Caution before using this module

- Forked from [`terraform-aws-autoscale`](https://registry.terraform.io/modules/terraform-aws-modules/autoscaling/aws/latest)!
- Origin Version is `v7.2.0`, now.
- Just Added: ignoring `target_group_arns`

## AWS Auto Scaling Group (ASG) Terraform module

Terraform module which creates Auto Scaling resources on AWS.

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ resource "aws_autoscaling_group" "idc" {

lifecycle {
create_before_destroy = true
ignore_changes = [desired_capacity]
ignore_changes = [desired_capacity, target_group_arns]
}
}

Expand Down

0 comments on commit a969c21

Please # to comment.