Skip to content
This repository was archived by the owner on Dec 5, 2023. It is now read-only.

Commit a865c6e

Browse files
authored
Merge pull request #1 from SevereOverfl0w/master
Fix support for alarm action lists
2 parents 6a35a5f + f9840f5 commit a865c6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ resource "aws_cloudwatch_metric_alarm" "metric_alarm" {
1818
period = "${var.period}"
1919
threshold = "${var.threshold}"
2020
statistic = "${var.statistic}"
21-
alarm_actions = "${var.alarm_action_arns}"
22-
}
21+
alarm_actions = ["${var.alarm_action_arns}"]
22+
}

0 commit comments

Comments
 (0)