Skip to content

Commit d6715c7

Browse files
authored
feat: Add ignore changes on tags to elasticbeanstalk:shared-elb-environment-count (#324)
1 parent e3586dd commit d6715c7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

main.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ resource "aws_lb" "this" {
6161
update = try(var.timeouts.update, null)
6262
delete = try(var.timeouts.delete, null)
6363
}
64+
65+
lifecycle {
66+
ignore_changes = [
67+
tags["elasticbeanstalk:shared-elb-environment-count"]
68+
]
69+
}
6470
}
6571

6672
################################################################################

0 commit comments

Comments
 (0)