mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-23 08:51:30 -05:00
This will also ensure any drift is picked up by our infrastructure verification checks Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
18 lines
482 B
HCL
18 lines
482 B
HCL
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"
|
|
}
|
|
|
|
variable "allow_ssh" {
|
|
type = bool
|
|
default = true
|
|
description = "Flag for allowing SSH access in a space - not recommended in production environments"
|
|
}
|