Skip to main content
variables.tf545 B
View on GitHub
variable "project" {
description = "Project name, used in resource names."
type = string
}

variable "stage" {
description = "SDLC environment (dev, staging, prod)."
type = string
}

variable "force_destroy" {
description = "Allow destroying the log bucket even when it contains objects."
type = bool
default = false
}

variable "kms_key_arn" {
description = "ARN of a KMS key used to encrypt the bucket. Empty string uses AES256 (SSE-S3) instead of SSE-KMS."
type = string
default = ""
}

Related Documentation