Skip to content

Commit be3b522

Browse files
add value attribute
1 parent 0a32b54 commit be3b522

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

terraform/core/34-aws-budget-alerting.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module "aws_budget_athena" {
4141
threshold = 100
4242
threshold_type = "PERCENTAGE"
4343
notification_type = "ACTUAL"
44-
subscriber_email_addresses = data.aws_ssm_parameter.budget_alert_recipients
44+
subscriber_email_addresses = [data.aws_ssm_parameter.budget_alert_recipients.value]
4545

4646
enable_anomaly_detection = true
4747
anomaly_monitor_name = "AthenaDailyAnomalyMonitor"
@@ -75,7 +75,7 @@ module "aws_budget_glue" {
7575
threshold = 100
7676
threshold_type = "PERCENTAGE"
7777
notification_type = "ACTUAL"
78-
subscriber_email_addresses = data.aws_ssm_parameter.budget_alert_recipients
78+
subscriber_email_addresses = [data.aws_ssm_parameter.budget_alert_recipients.value]
7979

8080
enable_anomaly_detection = true
8181
anomaly_monitor_name = "AthenaDailyAnomalyMonitor"

0 commit comments

Comments
 (0)