This commit is contained in:
Kenneth Kehl
2025-10-24 09:29:20 -07:00
parent 96a584a124
commit f447f2b962
2 changed files with 1 additions and 12 deletions

View File

@@ -1,19 +1,9 @@
terraform {
required_version = "~> 1.7"
required_providers {
cfcommunity = {
cloudfoundry = {
source = "cloudfoundry-community/cloudfoundry"
version = "0.53.1"
}
}
}
# Community provider (should be aliased but default for now)
provider "cfcommunity" {
api_url = "https://api.fr.cloud.gov"
user = var.cf_user
password = var.cf_password
app_logs_max = 30
}

View File

@@ -66,7 +66,6 @@ module "egress-space" {
module "ses_email" {
source = "../shared/ses"
cf_org_name = local.cf_org_name
cf_space_name = local.cf_space_name
name = "${local.app_name}-ses-${local.env}"