Added root level allowed_origins variable

This commit is contained in:
Khalim Conn-Kowlessar 2023-07-14 14:38:47 +01:00
parent f62acc9ed0
commit 48325a00d7

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