Skip to content

Commit c12559d

Browse files
authored
fix: Add missing tags to CloudWatch alarms. (#38)
1 parent 8b16625 commit c12559d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tofu/modules/system/alarms.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ resource "aws_cloudwatch_metric_alarm" "queue_active" {
1818
module.consumer.scale_up_policy_arn,
1919
module.redoer.scale_up_policy_arn
2020
]
21+
22+
tags = var.tags
2123
}
2224

2325
resource "aws_cloudwatch_metric_alarm" "queue_empty" {
@@ -40,4 +42,6 @@ resource "aws_cloudwatch_metric_alarm" "queue_empty" {
4042
module.consumer.scale_down_policy_arn,
4143
module.redoer.scale_down_policy_arn
4244
]
45+
46+
tags = var.tags
4347
}

0 commit comments

Comments
 (0)