mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
This changeset reverts the rest of our recent Terraform changes to make sure deployments are working properly. Again, these will be re-introduced once we figure out the resource management piece. Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
31 lines
746 B
HCL
31 lines
746 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 "recursive_delete" {
|
|
type = bool
|
|
description = "when true, deletes service bindings attached to the resource (not recommended for production)"
|
|
default = false
|
|
}
|
|
|
|
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"
|
|
}
|