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>
17 lines
332 B
HCL
17 lines
332 B
HCL
terraform {
|
|
required_version = "~> 1.0"
|
|
required_providers {
|
|
cloudfoundry = {
|
|
source = "cloudfoundry-community/cloudfoundry"
|
|
version = "0.53.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "cloudfoundry" {
|
|
api_url = "https://api.fr.cloud.gov"
|
|
user = var.cf_user
|
|
password = var.cf_password
|
|
app_logs_max = 30
|
|
}
|