Files
orchard/provisioners/modules/aws-s3/variables.tf
2026-02-04 11:32:12 -08:00

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"
}