59 Add S3 Bucket Provisioner
This commit is contained in:
17
provisioners/modules/aws-s3/variables.tf
Normal file
17
provisioners/modules/aws-s3/variables.tf
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user