generated from clouddrove/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
184 lines (154 loc) · 4.73 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
#Module : LABEL
#Description : Terraform label module variables.
variable "name" {
type = string
default = ""
description = "Name (e.g. `app` or `cluster`)."
}
variable "repository" {
type = string
default = "https://github.com/clouddrove/terraform-aws-sftp"
description = "Terraform current module repo"
}
variable "environment" {
type = string
default = ""
description = "Environment (e.g. `prod`, `dev`, `staging`)."
}
variable "label_order" {
type = list(any)
default = ["environment", "name"]
description = "Label order, e.g. `name`,`application`."
}
variable "attributes" {
type = list(any)
default = []
description = "Additional attributes (e.g. `1`)."
}
variable "managedby" {
type = string
default = "hello@clouddrove.com"
description = "ManagedBy, eg 'CloudDrove'."
}
#Module : SFTP Workflow
#Description : Terraform sftp workflow module variables.
variable "enable_workflow" {
type = bool
default = true
description = "Set to false to prevent the module from creating any resources."
}
variable "delete_step_name" {
type = string
default = null
description = "Delete step Name (e.g. `app` or `cluster`)."
}
variable "tag_step_name" {
type = string
default = null
description = "Tage step Name (e.g. `app` or `cluster`)."
}
variable "copy_step_name" {
type = string
default = null
description = "Copy Step Name (e.g. `app` or `cluster`)."
}
variable "decrypt_step_name" {
type = string
default = "test-decrypt"
description = "Decypt step Name (e.g. `app` or `cluster`)."
}
variable "enable_tag_step" {
type = bool
default = true
description = "Set to false to prevent the step from creating tag step resources."
}
variable "enable_delete_step" {
type = bool
default = true
description = "Set to false to prevent the step from creating delete step resources."
}
variable "enable_custom_step" {
type = bool
default = false
description = "Set to false to prevent the step from creating custom step resources."
}
variable "enable_copy_step" {
type = bool
default = true
description = "Set to false to prevent the step from creating copy step resources."
}
variable "enable_decrypt_step" {
type = bool
default = true
description = "Set to false to prevent the step from creating decrypt step resources."
}
variable "decrypt_overwrite_existing" {
type = any
default = "TRUE"
description = "(Optional) A flag that indicates whether or not to overwrite an existing file of the same name. The default is FALSE. Valid values are TRUE and FALSE."
}
variable "copy_overwrite_existing" {
type = any
default = ""
description = "(Optional) A flag that indicates whether or not to overwrite an existing file of the same name. The default is FALSE. Valid values are TRUE and FALSE."
}
variable "timeout_seconds" {
type = any
default = "60"
description = "(Optional) Timeout, in seconds, for the step."
}
variable "workflow_description" {
type = string
default = "test-workflow"
description = "(Optional) A textual description for the workflow."
}
variable "copy_step_source_location" {
type = any
default = ""
description = ""
}
variable "tag_step_source_location" {
type = any
default = ""
description = ""
}
variable "custom_step_source_location" {
type = any
default = ""
description = ""
}
variable "decrypt_step_source_location" {
type = any
default = "r "
description = ""
}
variable "tag_key" {
type = any
default = ""
description = "(Required) The name assigned to the tag that you create."
}
variable "tag_value" {
type = any
default = ""
description = "(Required) The name assigned to the tag that you create."
}
variable "copy_bucket_name" {
type = string
default = ""
description = "(Optional) The name assigned to the file when it was created in S3. You use the object key to retrieve the object."
}
variable "decrypt_bucket_file_key" {
type = string
default = ""
description = "(Optional) The name assigned to the file when it was created in S3. You use the object key to retrieve the object."
}
variable "copy_bucket_file_key" {
type = string
default = ""
description = "(Optional) The name assigned to the file when it was created in S3. You use the object key to retrieve the object."
}
variable "decrypt_bucket_name" {
type = string
default = ""
description = "(Optional) The name assigned to the file when it was created in S3. You use the object key to retrieve the object."
}