19 lines
373 B
HCL
19 lines
373 B
HCL
variable "BUCKET_NAME" {
|
|
description = "Name of the bucket to create"
|
|
type = string
|
|
}
|
|
|
|
variable "ENCRYPTED" {
|
|
description = "S3 encryption enabled?"
|
|
type = string
|
|
}
|
|
|
|
variable "VERSIONING" {
|
|
description = "S3 versioning enabled?"
|
|
type = string
|
|
}
|
|
|
|
variable "ENVIRONMENT" {
|
|
description = "Staging or production env?"
|
|
type = string
|
|
} |