Update terraform module to v0.2.0

This commit is contained in:
Ryan Ahearn
2022-12-22 08:38:06 -05:00
parent e7a8e3afe8
commit dc639feedf
10 changed files with 48 additions and 62 deletions

View File

@@ -7,10 +7,3 @@ terraform {
}
}
}
provider "cloudfoundry" {
api_url = "https://api.fr.cloud.gov"
user = var.cf_user
password = var.cf_password
app_logs_max = 30
}

View File

@@ -1,14 +1,9 @@
variable "cf_password" {
type = string
sensitive = true
}
variable "cf_user" {}
variable "cf_org_name" {}
variable "cf_space_name" {}
variable "source_app_name" {}
variable "destination_app_name" {}
variable "destination_port" {
type = string
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"