-
Notifications
You must be signed in to change notification settings - Fork 9
/
variables.tf
70 lines (58 loc) · 2.11 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
variable "default_sender_id" {
description = "A custom ID, such as your business brand, displayed as the sender on the receiving device. Support for sender IDs varies by country."
type = string
default = ""
}
variable "default_sms_type" {
description = "Promotional messages are noncritical, such as marketing messages. Transactional messages are delivered with higher reliability to support customer transactions, such as one-time passcodes."
type = string
default = "Promotional"
}
variable "delivery_status_iam_role_arn" {
description = "The IAM role that allows Amazon SNS to write logs for SMS deliveries in CloudWatch Logs."
type = string
default = ""
}
variable "delivery_status_success_sampling_rate" {
description = "Default percentage of success to sample."
type = number
default = 0
}
variable "monthly_spend_limit" {
description = "The maximum amount to spend on SMS messages each month. If you send a message that exceeds your limit, Amazon SNS stops sending messages within minutes."
type = number
default = 1
}
variable "policy_name" {
description = "Name of policy to publish to Group SMS topic."
type = string
default = "group-sms-publish"
}
variable "policy_path" {
description = "Path of policy to publish to Group SMS topic"
type = string
default = "/"
}
variable "role_name" {
description = "The IAM role that allows Amazon SNS to write logs for SMS deliveries in CloudWatch Logs."
type = string
default = "SNSSuccessFeedback"
}
variable "subscriptions" {
description = "List of telephone numbers to subscribe to SNS."
type = list(string)
default = []
}
variable "topic_display_name" {
description = "Display name of the AWS SNS topic."
type = string
default = ""
}
variable "topic_name" {
description = "Name of the AWS SNS topic."
type = string
}
variable "usage_report_s3_bucket" {
description = "The Amazon S3 bucket to receive daily SMS usage reports. The bucket policy must grant write access to Amazon SNS."
type = string
}