Skip to content

Commit 2d3fe78

Browse files
committed
fix: prepend user: to LINKED_ACCOUNT key, and set MatchOptions to null to prevent improper change detection
1 parent 34d1db3 commit 2d3fe78

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main.tf

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ resource "aws_ce_anomaly_monitor" "account" {
2626
Or = null
2727

2828
Tags = {
29-
Key = "LINKED_ACCOUNT"
30-
Values = var.account_list
29+
Key = "user:LINKED_ACCOUNT"
30+
MatchOptions = null
31+
Values = var.account_list
3132
}
3233
})
3334
}

0 commit comments

Comments
 (0)