-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
33 lines (29 loc) · 987 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
variable "sns_topics" {
description = "The list of SNS topics name to create."
type = list(string)
default = []
}
variable "sns_subscriptions" {
description = "Subscriptions associated with topics previously created."
type = list(object({
endpoints = string, // comma separated values
topic = string,
type = string
}))
default = []
}
variable "sns_sms_preferences_sender_id" {
description = "A string, such as your business brand, that is displayed as the sender on the receiving device. Must be at most 11 characters."
type = string
default = ""
}
variable "sns_sms_preferences_type" {
description = "The type of SMS message that you will send by default. Possible values are: Promotional, Transactional"
type = string
default = "Promotional"
}
variable "tags" {
description = "Tags to associate to SNS topics"
type = map
default = {}
}