59 Add S3 Bucket Provisioner

This commit is contained in:
Evan Cohen-Doty
2026-02-04 11:32:12 -08:00
parent dcd405679a
commit 1b706fe858
6 changed files with 258 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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"
}