From e601ca983228ddfe883d12879e31ef94e6f9d5f5 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 8 Oct 2022 21:31:58 +0300 Subject: [PATCH] fixup! Allow disabling SMS messages. --- sms-notify.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sms-notify.tf b/sms-notify.tf index dfbcf4f..1ee5e9f 100644 --- a/sms-notify.tf +++ b/sms-notify.tf @@ -17,7 +17,7 @@ output "send_sms_notifications" { } resource "aws_ssm_parameter" "send_sms_notifications" { - name = "${local.module}/${local.env}/send_sms_notifications" + name = "/${local.module}/${local.env}/send_sms_notifications" type = "String" value = tostring(var.send_sms_notifications) } -- GitLab