mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-11 07:33:36 -05:00
This changeset updates the Cloud Foundry Terraform to its latest release. Our file were previously referencing a very old version, which was contributing to infrastructure check and deployment failures. Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
17 lines
322 B
HCL
17 lines
322 B
HCL
terraform {
|
|
required_version = "~> 1.0"
|
|
required_providers {
|
|
cloudfoundry = {
|
|
source = "cloudfoundry-community/cloudfoundry"
|
|
version = "0.53.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "cloudfoundry" {
|
|
api_url = local.cf_api_url
|
|
user = var.cf_user
|
|
password = var.cf_password
|
|
app_logs_max = 30
|
|
}
|