Skip to content

Commit

Permalink
Add required parameters for SNS subscribers
Browse files Browse the repository at this point in the history
  • Loading branch information
lgallard committed Oct 26, 2021
1 parent 3cbcf97 commit f67f75c
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions root/us-east-1/notifications/sms_tools_monitoring.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,22 @@ module "notify_sms" {

subscribers = {
phone1 = {
protocol = "sms"
endpoint = data.vault_generic_secret.notifications.data["phone1"]
protocol = "sms"
endpoint = data.vault_generic_secret.notifications.data["phone1"]
endpoint_auto_confirms = true
raw_message_delivery = true
}
#phone2 = {
# protocol = "sms"
# endpoint = data.vault_generic_secret.notifications.data["phone2"]
# protocol = "sms"
# endpoint = data.vault_generic_secret.notifications.data["phone2"]
# endpoint_auto_confirms = true
# raw_message_delivery = true
#}
#phone3 = {
# protocol = "sms"
# endpoint = data.vault_generic_secret.notifications.data["phone3"]
# protocol = "sms"
# endpoint = data.vault_generic_secret.notifications.data["phone3"]
# endpoint_auto_confirms = true
# raw_message_delivery = true
#}
}

Expand Down

0 comments on commit f67f75c

Please sign in to comment.