Files
notifications-api/terraform/shared/egress_space/variables.tf

12 lines
311 B
Terraform
Raw Normal View History

2022-11-04 16:37:32 -04:00
variable "cf_org_name" {}
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"
}