juntekim.com/terraform/modules/s3/variables.tf
2026-02-17 23:28:47 +00:00

13 lines
No EOL
433 B
HCL

variable "bucketname" {
description = "The name of the bucket to create"
type = string
}
# Between production and development, we need to specify the
# allowed origins for CORS differently. This variable is set to allow
# us to generate pre-signed urls and in development, we want to be able to
# do so from localhost.
variable "allowed_origins" {
description = "Allowed origins for CORS"
type = list(string)
}