-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
37 lines (32 loc) · 919 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
28
29
30
31
32
33
34
35
36
37
variable "s3_bucket_name" {
description = "The S3 bucket name containing the state files."
type = string
default = "base-statefiles-tst"
}
variable "dynamodb_table_name" {
description = "The name of the DynamoDB table used to lock the state."
type = string
default = "base-statelocks-tst"
}
variable "aws_tags_base" {
description = "AWS base tags to be applied."
type = map(any)
default = {
TerraformManaged = true
}
}
variable "s3_logging_bucket" {
description = "Bucket name where log files will be sent."
type = string
default = "none"
}
variable "s3_logging_prefix" {
description = "Separation of log files if bucket used for more."
type = string
default = "none"
}
# variable "s3_expiration_days" {
# description = "Number of days before objects and versions expire."
# type = string
# default = "14"
# }