-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathvariables.tf
More file actions
127 lines (105 loc) · 3.55 KB
/
variables.tf
File metadata and controls
127 lines (105 loc) · 3.55 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
variable "create_subscription_1" {
description = "Set to true to enable subscription."
type = bool
default = false
}
variable "create_subscription_2" {
description = "Set to true to enable subscription."
type = bool
default = false
}
variable "create_subscription_3" {
description = "Set to true to enable subscription."
type = bool
default = false
}
variable "create_subscription_4" {
description = "Set to true to enable subscription."
type = bool
default = false
}
variable "create_subscription_5" {
description = "Set to true to enable subscription."
type = bool
default = false
}
variable "endpoint_1" {
description = "The subscription's endpoint #1."
type = string
default = ""
}
variable "endpoint_2" {
description = "The subscription's endpoint #2."
type = string
default = ""
}
variable "endpoint_3" {
description = "The subscription's endpoint #3."
type = string
default = ""
}
variable "endpoint_4" {
description = "The subscription's endpoint #4."
type = string
default = ""
}
variable "endpoint_5" {
description = "The subscription's endpoint #5."
type = string
default = ""
}
variable "endpoint_auto_confirms_1" {
description = "Boolean indicating whether endpoint #1 is capable of auto confirming subscription (required for HTTP protocols)."
type = bool
default = false
}
variable "endpoint_auto_confirms_2" {
description = "Boolean indicating whether endpoint #2 is capable of auto confirming subscription (required for HTTP protocols)."
type = bool
default = false
}
variable "endpoint_auto_confirms_3" {
description = "Boolean indicating whether endpoint #3 is capable of auto confirming subscription (required for HTTP protocols)."
type = bool
default = false
}
variable "endpoint_auto_confirms_4" {
description = "Boolean indicating whether endpoint #4 is capable of auto confirming subscription (required for HTTP protocols)."
type = bool
default = false
}
variable "endpoint_auto_confirms_5" {
description = "Boolean indicating whether endpoint #5 is capable of auto confirming subscription (required for HTTP protocols)."
type = bool
default = false
}
# Terraform does not currently support email or email-json as a protocol. See: https://www.terraform.io/docs/providers/aws/r/sns_topic_subscription.html
variable "protocol_1" {
description = "The protocol you want to use in your endpoint #1. Supported protocols include: http, https, sms, sqs, application, lambda."
type = string
default = ""
}
variable "protocol_2" {
description = "The protocol you want to use in your endpoint #2. Supported protocols include: http, https, sms, sqs, application, lambda."
type = string
default = ""
}
variable "protocol_3" {
description = "The protocol you want to use in your endpoint #3. Supported protocols include: http, https, sms, sqs, application, lambda."
type = string
default = ""
}
variable "protocol_4" {
description = "The protocol you want to use in your endpoint #4. Supported protocols include: http, https, sms, sqs, application, lambda."
type = string
default = ""
}
variable "protocol_5" {
description = "The protocol you want to use in your endpoint #5. Supported protocols include: http, https, sms, sqs, application, lambda."
type = string
default = ""
}
variable "name" {
description = "A name for the topic"
type = string
}