Files
notifications-admin/terraform/shared/container_networking/variables.tf
2022-12-22 08:38:06 -05:00

11 lines
383 B
HCL

variable "cf_org_name" {}
variable "cf_space_name" {}
variable "source_app_name" {}
variable "destination_app_name" {}
variable "destination_port" {
type = string
# 61443 is the port to use to enable automatic TLS termination as specified at
# https://cloud.gov/docs/management/container-to-container/#configuring-secure-container-to-container-networking
default = "61443"
}