53 lines
1.4 KiB
Terraform
53 lines
1.4 KiB
Terraform
variable "bucket_name" {
|
|
type = string
|
|
description = "Name of bucket"
|
|
}
|
|
|
|
variable "current_version_expiration_days" {
|
|
type = number
|
|
default = 30
|
|
description = "Delete logs after days - default 30"
|
|
}
|
|
|
|
variable "encryption_key_arn" {
|
|
type = string
|
|
default = ""
|
|
description = "Leave blank to use AES256"
|
|
}
|
|
|
|
variable "enable_bucket_lifecycle" {
|
|
type = bool
|
|
description = "Enable s3 bucket lifecycle"
|
|
default = true
|
|
}
|
|
|
|
variable "region_account_map" {
|
|
type = map(string)
|
|
description = "AWS account id from which LB logs are produced"
|
|
default = {
|
|
us-east-1 = "127311923021"
|
|
us-east-2 = "033677994240"
|
|
us-west-1 = "027434742980"
|
|
us-west-2 = "797873946194"
|
|
af-south-1 = "098369216593"
|
|
ap-east-1 = "754344448648"
|
|
ap-southeast-3 = "589379963580"
|
|
ap-south-1 = "718504428378"
|
|
ap-northeast-3 = "383597477331"
|
|
ap-northeast-2 = "600734575887"
|
|
ap-southeast-1 = "114774131450"
|
|
ap-southeast-2 = "783225319266"
|
|
ap-northeast-1 = "582318560864"
|
|
ca-central-1 = "985666609251"
|
|
eu-central-1 = "054676820928"
|
|
eu-west-1 = "156460612806"
|
|
eu-west-2 = "652711504416"
|
|
eu-south-1 = "635631232127"
|
|
eu-west-3 = "009996457667"
|
|
eu-north-1 = "897822967062"
|
|
me-south-1 = "076674570225"
|
|
sa-east-1 = "507241528517"
|
|
}
|
|
}
|
|
|