forked from nozaq/terraform-aws-secure-baseline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
27 lines (22 loc) · 789 Bytes
/
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
variable "bucket_name" {
}
variable "log_bucket_name" {
}
variable "lifecycle_glacier_transition_days" {
description = "The number of days after object creation when the object is archived into Glacier."
default = 90
}
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."
default = false
}
variable "enabled" {
description = "A boolean that indicates this module is enabled. Resources are not created if it is set to false."
default = true
}
variable "tags" {
description = "Specifies object tags key and value. This applies to all resources created by this module."
default = {
"Terraform" = true
}
}