forked from nozaq/terraform-aws-secure-baseline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
35 lines (30 loc) · 1.06 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
variable "bucket_name" {
description = "The name of the S3 bucket to create."
type = string
}
variable "log_bucket_name" {
description = "The name of the S3 bucket to store access logs to the main bucket."
type = string
}
variable "lifecycle_glacier_transition_days" {
description = "The number of days after object creation when the object is archived into Glacier. Setting to zero disables the transition."
type = number
default = 0
}
variable "force_destroy" {
description = " A boolean that indicates all objects should be deleted from the bucket so that the bucket can be destroyed without error. These objects are not recoverable."
type = bool
default = false
}
variable "tags" {
description = "Specifies object tags key and value. This applies to all resources created by this module."
type = map(string)
default = {
"Terraform" = "true"
}
}
variable "bucket_key_enabled" {
description = "Whether or not to use Amazon S3 Bucket Keys for this bucket."
type = bool
default = false
}