Advertisement
Guest User

Untitled

a guest
Nov 24th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. variable "aws-account" {
  2. type = string
  3. description = "AWS account ID"
  4. default = "1234567890"
  5. }
  6.  
  7. variable "sns-topic-recipient" {
  8. type = list(map(string))
  9. description = "List of the topic recipients"
  10. default = [
  11. {
  12. name = "recipient1"
  13. },
  14. {
  15. name = "recipient2"
  16. },
  17. {
  18. name = "recipient3"
  19. }
  20. ]
  21. }
  22.  
  23. variable "sns-subscription-email-address-list" {
  24. type = list(map(string))
  25. description = "List of email addresses as a map"
  26. default = [
  27. {
  28. name = "recipient1"
  29. email-address = "[email protected]"
  30. },
  31. {
  32. name = "recipient2"
  33. email-address = "[email protected]"
  34. },
  35. {
  36. name = "recipient3"
  37. email-address = "[email protected]"
  38. }
  39. ]
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement