12345678910111213141516171819202122232425262728293031323334353637 |
- variable "bucket_name" {
- default = null
- description = "Name to apply to bucket (use `bucket_name` or `bucket_suffix`)"
- type = string
- }
- variable "bucket_suffix" {
- default = "default"
- description = "Suffix to apply to the bucket (use `bucket_name` or `bucket_suffix`). When using `bucket_suffix`, the bucket name will be `[account_id]-[region]-s3logging-[bucket_suffix]."
- type = string
- }
- variable "lifecycle_rules" {
- default = []
- description = "lifecycle rules to apply to the bucket"
- type = list(object(
- {
- id = string
- enabled = bool
- prefix = string
- expiration = number
- noncurrent_version_expiration = number
- abort_incomplete_multipart_upload_days = number
- }))
- }
- variable "tags" {
- default = {}
- description = "Tags to add to supported resources"
- type = map(string)
- }
- variable "versioning_enabled" {
- default = true
- description = "Whether or not to use versioning on the bucket. This can be useful for audit purposes since objects in a logging bucket should not be updated."
- type = bool
- }
|