Skip to content

Commit fdb7eb1

Browse files
authored
fix: add tags to aws_appautoscaling_policy
tags were missing from the resource aws_appautoscaling_policy
1 parent 234257c commit fdb7eb1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

main.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,14 @@ resource "aws_appautoscaling_policy" "this" {
318318
depends_on = [
319319
aws_appautoscaling_target.this
320320
]
321+
322+
tags = var.tags
323+
324+
lifecycle {
325+
ignore_changes = [
326+
tags_all,
327+
]
328+
}
321329
}
322330

323331
################################################################################

0 commit comments

Comments
 (0)