-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
172 lines (146 loc) · 5.15 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
variable "repository_name" {
description = "Name of the repository"
type = "string"
}
variable "description" {
description = "A description of the repository"
type = "string"
default = ""
}
variable "default_branch" {
description = "The default branch for the repository"
type = "string"
default = "master"
}
#############
# Trigger 1 #
#############
variable "enable_trigger_1" {
description = "Enable trigger #1 for the repository"
type = "string"
default = false
}
variable "trigger_1_name" {
description = "Trigger #1 name"
type = "string"
default = ""
}
variable "trigger_1_events" {
description = "The repository events that will cause the trigger to run actions in another service. Event types include: all, updateReference, createReference, deleteReference."
type = "list"
default = []
}
variable "trigger_1_destination_arn" {
description = "The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS)."
type = "string"
default = ""
}
variable "trigger_1_custom_data" {
description = "Any custom data associated with the trigger that will be included in the information sent to the target of the trigger."
type = "string"
default = ""
}
variable "trigger_1_branches" {
description = "The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches."
type = "list"
default = []
}
#############
# Trigger 2 #
#############
variable "enable_trigger_2" {
description = "Enable trigger #2 for the repository"
type = "string"
default = false
}
variable "trigger_2_name" {
description = "Trigger #2 name"
type = "string"
default = ""
}
variable "trigger_2_events" {
description = "The repository events that will cause the trigger to run actions in another service. Event types include: all, updateReference, createReference, deleteReference."
type = "list"
default = []
}
variable "trigger_2_destination_arn" {
description = "The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS)."
type = "string"
default = ""
}
variable "trigger_2_custom_data" {
description = "Any custom data associated with the trigger that will be included in the information sent to the target of the trigger."
type = "string"
default = ""
}
variable "trigger_2_branches" {
description = "The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches."
type = "list"
default = []
}
#############
# Trigger 3 #
#############
variable "enable_trigger_3" {
description = "Enable trigger #3 for the repository"
type = "string"
default = false
}
variable "trigger_3_name" {
description = "Trigger #3 name"
type = "string"
default = ""
}
variable "trigger_3_events" {
description = "The repository events that will cause the trigger to run actions in another service. Event types include: all, updateReference, createReference, deleteReference."
type = "list"
default = []
}
variable "trigger_3_destination_arn" {
description = "The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS)."
type = "string"
default = ""
}
variable "trigger_3_custom_data" {
description = "Any custom data associated with the trigger that will be included in the information sent to the target of the trigger."
type = "string"
default = ""
}
variable "trigger_3_branches" {
description = "The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches."
type = "list"
default = []
}
#############
# Trigger 4 #
#############
variable "enable_trigger_4" {
description = "Enable trigger #4 for the repository"
type = "string"
default = false
}
variable "trigger_4_name" {
description = "Trigger #4 name"
type = "string"
default = ""
}
variable "trigger_4_events" {
description = "The repository events that will cause the trigger to run actions in another service. Event types include: all, updateReference, createReference, deleteReference."
type = "list"
default = []
}
variable "trigger_4_destination_arn" {
description = "The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS)."
type = "string"
default = ""
}
variable "trigger_4_custom_data" {
description = "Any custom data associated with the trigger that will be included in the information sent to the target of the trigger."
type = "string"
default = ""
}
variable "trigger_4_branches" {
description = "The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches."
type = "list"
default = []
}