-
-
Notifications
You must be signed in to change notification settings - Fork 178
/
variables.tf
226 lines (191 loc) · 6.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
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
variable "arn_format" {
type = string
description = "ARN format to be used. May be changed to support deployment in GovCloud/China regions."
default = "arn:aws"
}
variable "acl" {
type = string
description = "The canned ACL to apply to the S3 bucket"
default = "private"
}
variable "billing_mode" {
type = string
description = "DynamoDB billing mode"
default = "PAY_PER_REQUEST"
}
variable "read_capacity" {
type = number
description = "DynamoDB read capacity units when using provisioned mode"
default = 5
}
variable "write_capacity" {
type = number
description = "DynamoDB write capacity units when using provisioned mode"
default = 5
}
variable "force_destroy" {
type = bool
description = "A boolean that indicates the S3 bucket can be destroyed even if it contains objects. These objects are not recoverable"
default = false
}
variable "deletion_protection_enabled" {
type = bool
description = "A boolean that enables deletion protection for DynamoDB table"
default = false
}
variable "mfa_delete" {
type = bool
description = "A boolean that indicates that versions of S3 objects can only be deleted with MFA. ( Terraform cannot apply changes of this value; https://github.com/terraform-providers/terraform-provider-aws/issues/629 )"
default = false
}
variable "enable_point_in_time_recovery" {
type = bool
description = "Enable DynamoDB point-in-time recovery"
default = true
}
variable "enable_public_access_block" {
type = bool
description = "Enable Bucket Public Access Block"
default = true
}
variable "bucket_ownership_enforced_enabled" {
type = bool
description = "Set bucket object ownership to \"BucketOwnerEnforced\". Disables ACLs."
default = true
}
variable "block_public_acls" {
type = bool
description = "Whether Amazon S3 should block public ACLs for this bucket"
default = true
}
variable "ignore_public_acls" {
type = bool
description = "Whether Amazon S3 should ignore public ACLs for this bucket"
default = true
}
variable "block_public_policy" {
type = bool
description = "Whether Amazon S3 should block public bucket policies for this bucket"
default = true
}
variable "restrict_public_buckets" {
type = bool
description = "Whether Amazon S3 should restrict public bucket policies for this bucket"
default = true
}
variable "prevent_unencrypted_uploads" {
type = bool
default = true
description = "Prevent uploads of unencrypted objects to S3"
}
variable "profile" {
type = string
default = ""
description = "AWS profile name as set in the shared credentials file"
}
variable "role_arn" {
type = string
default = ""
description = "The role to be assumed"
}
variable "terraform_backend_config_file_name" {
type = string
default = "terraform.tf"
description = "(Deprecated) Name of terraform backend config file to generate"
}
variable "terraform_backend_config_file_path" {
type = string
default = ""
description = "(Deprecated) Directory for the terraform backend config file, usually `.`. The default is to create no file."
}
variable "terraform_backend_config_template_file" {
type = string
default = ""
description = "(Deprecated) The path to the template used to generate the config file"
}
variable "terraform_version" {
type = string
default = "1.0.0"
description = "The minimum required terraform version"
}
variable "terraform_state_file" {
type = string
default = "terraform.tfstate"
description = "The path to the state file inside the bucket"
}
variable "s3_bucket_name" {
type = string
description = "S3 bucket name. If not provided, the name will be generated from the context by the label module."
default = ""
validation {
condition = length(var.s3_bucket_name) < 64
error_message = "A provided S3 bucket name must be fewer than 64 characters."
}
}
variable "s3_replication_enabled" {
type = bool
default = false
description = "Set this to true and specify `s3_replica_bucket_arn` to enable replication"
}
variable "s3_replica_bucket_arn" {
type = string
default = ""
description = "The ARN of the S3 replica bucket (destination)"
}
variable "logging" {
type = list(object({
target_bucket = string
target_prefix = string
}))
description = "Destination (S3 bucket name and prefix) for S3 Server Access Logs for the S3 bucket."
default = []
validation {
condition = length(var.logging) < 2
error_message = "Only 1 bucket logging configuration can be provided."
}
}
variable "bucket_enabled" {
type = bool
default = true
description = "Whether to create the S3 bucket."
}
variable "dynamodb_enabled" {
type = bool
default = true
description = "Whether to create the DynamoDB table."
}
variable "dynamodb_table_name" {
type = string
default = null
description = "Override the name of the DynamoDB table which defaults to using `module.dynamodb_table_label.id`"
}
variable "permissions_boundary" {
type = string
default = ""
description = "ARN of the policy that is used to set the permissions boundary for the IAM replication role"
}
variable "source_policy_documents" {
type = list(string)
default = []
description = <<-EOT
List of IAM policy documents (in JSON format) that are merged together into the generated S3 bucket policy.
Statements must have unique SIDs.
Statement having SIDs that match policy SIDs generated by this module will override them.
EOT
}
variable "sse_encryption" {
type = string
default = "AES256"
description = <<-EOT
The server-side encryption algorithm to use.
Valid values are `AES256`, `aws:kms`, and `aws:kms:dsse`.
EOT
}
variable "kms_master_key_id" {
type = string
default = null
description = <<-EOT
AWS KMS master key ID used for the SSE-KMS encryption.
This can only be used when you set the value of sse_algorithm as aws:kms.
EOT
}