Upgrade terraform-cloudgov version and args in Bootstrap module

This commit is contained in:
John Skiles Skinner
2024-07-17 16:35:58 -07:00
parent 7507de973e
commit 58dc83d9fd
2 changed files with 5 additions and 9 deletions

View File

@@ -1,17 +1,13 @@
locals {
cf_api_url = "https://api.fr.cloud.gov"
s3_service_name = "notify-terraform-state"
}
module "s3" {
source = "github.com/18f/terraform-cloudgov//s3?ref=v0.1.0"
source = "github.com/GSA-TTS/terraform-cloudgov//s3?ref=v1.0.0"
cf_api_url = local.cf_api_url
cf_user = var.cf_user
cf_password = var.cf_password
cf_org_name = "gsa-tts-benefits-studio"
cf_space_name = "notify-management"
s3_service_name = local.s3_service_name
cf_org_name = "gsa-tts-benefits-studio"
cf_space_name = "notify-management"
name = local.s3_service_name
}
resource "cloudfoundry_service_key" "bucket_creds" {

View File

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