mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-23 00:41:35 -05:00
This changeset adjusts our Terraform for the production and demo environments so that the new delete_recursive_allowed with the Cloud Foundry Cloud Controller is set to false. It also updates the shared modules to all explicitly account for this property so that we can set the flag easily. Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
31 lines
758 B
HCL
31 lines
758 B
HCL
variable "cf_org_name" {
|
|
type = string
|
|
description = "cloud.gov organization name"
|
|
}
|
|
|
|
variable "cf_space_name" {
|
|
type = string
|
|
description = "cloud.gov space name (staging or prod)"
|
|
}
|
|
|
|
variable "name" {
|
|
type = string
|
|
description = "name of the service instance"
|
|
}
|
|
|
|
variable "aws_region" {
|
|
type = string
|
|
description = "AWS region the SNS settings are set in"
|
|
}
|
|
|
|
variable "monthly_spend_limit" {
|
|
type = number
|
|
description = "SMS budget limit in USD. Support request must be made before raising above 1"
|
|
}
|
|
|
|
variable "delete_recursive_allowed" {
|
|
type = bool
|
|
default = true
|
|
description = "Flag for allowing resources to be recursively deleted - not recommended in production environments"
|
|
}
|