-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
247 lines (205 loc) · 6.34 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
variable "create" {
description = "Whether to create Step Function resource"
type = bool
default = true
}
variable "create_role" {
description = "Whether to create IAM role for the Step Function"
type = bool
default = true
}
variable "use_existing_role" {
description = "Whether to use an existing IAM role for this Step Function"
type = bool
default = false
}
variable "use_existing_cloudwatch_log_group" {
description = "Whether to use an existing CloudWatch log group or create new"
type = bool
default = false
}
################
# Step Function
################
variable "name" {
description = "The name of the Step Function"
type = string
default = ""
}
variable "definition" {
description = "The Amazon States Language definition of the Step Function"
type = string
default = ""
}
variable "role_arn" {
description = "The Amazon Resource Name (ARN) of the IAM role to use for this Step Function"
type = string
default = ""
}
variable "tags" {
description = "Maps of tags to assign to the Step Function"
type = map(string)
default = {}
}
variable "type" {
description = "Determines whether a Standard or Express state machine is created. The default is STANDARD. Valid Values: STANDARD | EXPRESS"
type = string
default = "STANDARD"
validation {
condition = contains(["STANDARD", "EXPRESS"], upper(var.type))
error_message = "Step Function type must be one of the following (STANDARD | EXPRESS)."
}
}
#################
# CloudWatch Logs
#################
variable "logging_configuration" {
description = "Defines what execution history events are logged and where they are logged"
type = map(string)
default = {}
}
variable "cloudwatch_log_group_name" {
description = "Name of Cloudwatch Logs group name to use."
type = string
default = null
}
variable "cloudwatch_log_group_retention_in_days" {
description = "Specifies the number of days you want to retain log events in the specified log group. Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1827, and 3653."
type = number
default = null
}
variable "cloudwatch_log_group_kms_key_id" {
description = "The ARN of the KMS Key to use when encrypting log data."
type = string
default = null
}
variable "cloudwatch_log_group_tags" {
description = "A map of tags to assign to the resource."
type = map(string)
default = {}
}
variable "attach_cloudwatch_logs_policy" {
description = "Controls whether CloudWatch Logs policy should be added to IAM role for Lambda Function"
type = bool
default = true
}
###########
# IAM Role
###########
variable "aws_region_assume_role" {
description = "Name of AWS regions where IAM role can be assumed by the Step Function"
type = string
default = ""
}
variable "role_name" {
description = "Name of IAM role to use for Step Function"
type = string
default = null
}
variable "role_description" {
description = "Description of IAM role to use for Step Function"
type = string
default = null
}
variable "role_path" {
description = "Path of IAM role to use for Step Function"
type = string
default = null
}
variable "role_force_detach_policies" {
description = "Specifies to force detaching any policies the IAM role has before destroying it."
type = bool
default = true
}
variable "role_permissions_boundary" {
description = "The ARN of the policy that is used to set the permissions boundary for the IAM role used by Step Function"
type = string
default = null
}
variable "role_tags" {
description = "A map of tags to assign to IAM role"
type = map(string)
default = {}
}
#####################################################
# Predefined IAM Policies for supported AWS Services
# (Lambda, DynamoDB, ECS, EKS, EMR, SageMaker, ...)
#####################################################
variable "attach_policies_for_integrations" {
description = "Whether to attach AWS Service policies to IAM role"
type = bool
default = true
}
variable "service_integrations" {
description = "Map of AWS service integrations to allow in IAM role policy"
type = any
default = {}
}
##########################
# Various custom policies
##########################
variable "attach_policy_json" {
description = "Controls whether policy_json should be added to IAM role"
type = bool
default = false
}
variable "attach_policy_jsons" {
description = "Controls whether policy_jsons should be added to IAM role"
type = bool
default = false
}
variable "attach_policy" {
description = "Controls whether policy should be added to IAM role"
type = bool
default = false
}
variable "attach_policies" {
description = "Controls whether list of policies should be added to IAM role"
type = bool
default = false
}
variable "number_of_policy_jsons" {
description = "Number of policies JSON to attach to IAM role"
type = number
default = 0
}
variable "number_of_policies" {
description = "Number of policies to attach to IAM role"
type = number
default = 0
}
variable "attach_policy_statements" {
description = "Controls whether policy_statements should be added to IAM role"
type = bool
default = false
}
variable "trusted_entities" {
description = "Step Function additional trusted entities for assuming roles (trust relationship)"
type = list(string)
default = []
}
variable "policy_json" {
description = "An additional policy document as JSON to attach to IAM role"
type = string
default = null
}
variable "policy_jsons" {
description = "List of additional policy documents as JSON to attach to IAM role"
type = list(string)
default = []
}
variable "policy" {
description = "An additional policy document ARN to attach to IAM role"
type = string
default = null
}
variable "policies" {
description = "List of policy statements ARN to attach to IAM role"
type = list(string)
default = []
}
variable "policy_statements" {
description = "Map of dynamic policy statements to attach to IAM role"
type = any
default = {}
}