Skip to content

Commit

Permalink
feat: Add ignore changes on tags to `elasticbeanstalk:shared-elb-envi…
Browse files Browse the repository at this point in the history
…ronment-count` (#324)
  • Loading branch information
mnival committed Nov 13, 2023
1 parent e3586dd commit d6715c7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ resource "aws_lb" "this" {
update = try(var.timeouts.update, null)
delete = try(var.timeouts.delete, null)
}

lifecycle {
ignore_changes = [
tags["elasticbeanstalk:shared-elb-environment-count"]
]
}
}

################################################################################
Expand Down

0 comments on commit d6715c7

Please sign in to comment.