Add basic terraform bootstrap and staging environments

This commit is contained in:
Ryan Ahearn
2022-09-13 14:15:02 -04:00
parent 77bef474a3
commit 43bd8c5fe8
17 changed files with 499 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
terraform {
required_version = "~> 1.0"
required_providers {
cloudfoundry = {
source = "cloudfoundry-community/cloudfoundry"
version = "0.15.5"
}
}
}
provider "cloudfoundry" {
api_url = local.cf_api_url
user = var.cf_user
password = var.cf_password
app_logs_max = 30
}