Adding missing variable for egress_space

Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
This commit is contained in:
Carlo Costino
2024-03-12 14:26:28 -04:00
parent 68fa12340a
commit f0e66886d2

View File

@@ -3,3 +3,9 @@ variable "cf_restricted_space_name" {}
variable "deployers" {
type = set(string)
}
variable "delete_recursive_allowed" {
type = bool
default = true
description = "Flag for allowing resources to be recursively deleted - not recommended in production environments"
}