Merge pull request #29 from Hestia-Homes/main

Added root level allowed_origins variable
This commit is contained in:
KhalimCK 2023-07-14 14:39:16 +01:00 committed by GitHub
commit 8dcc563c00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,4 +26,9 @@ variable instance_class {
variable database_name {
description = "The name of the database to create when the DB instance is created"
type = string
}
variable "allowed_origins" {
description = "Allowed origins for CORS policy"
type = list(string)
}