Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- variable "aws-account" {
- type = string
- description = "AWS account ID"
- default = "1234567890"
- }
- variable "sns-topic-recipient" {
- type = list(map(string))
- description = "List of the topic recipients"
- default = [
- {
- name = "recipient1"
- },
- {
- name = "recipient2"
- },
- {
- name = "recipient3"
- }
- ]
- }
- variable "sns-subscription-email-address-list" {
- type = list(map(string))
- description = "List of email addresses as a map"
- default = [
- {
- name = "recipient1"
- email-address = "[email protected]"
- },
- {
- name = "recipient2"
- email-address = "[email protected]"
- },
- {
- name = "recipient3"
- email-address = "[email protected]"
- }
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement