17 lines
377 B
HCL
17 lines
377 B
HCL
variable "bucket" {
|
|
description = "Name of the S3 bucket"
|
|
type = string
|
|
default = "orchard-provisioning-bucket"
|
|
}
|
|
|
|
variable "acl" {
|
|
description = "Access control list for the bucket"
|
|
type = string
|
|
default = "private"
|
|
}
|
|
|
|
variable "environment" {
|
|
description = "Environment of the bucket"
|
|
type = string
|
|
default = "Development"
|
|
} |