From 2933ded5092ed6a3f27570310ca10c2f6f535d86 Mon Sep 17 00:00:00 2001 From: John Skiles Skinner Date: Thu, 25 Jul 2024 17:46:19 -0700 Subject: [PATCH] Experiment with uncommenting use of api_network_route module --- terraform/sandbox/main.tf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/terraform/sandbox/main.tf b/terraform/sandbox/main.tf index ad0748199..f49560c62 100644 --- a/terraform/sandbox/main.tf +++ b/terraform/sandbox/main.tf @@ -40,11 +40,11 @@ module "logo_upload_bucket" { # 1) the api app has first been deployed # 2) the admin app has first been deployed ########################################################################### -# module "api_network_route" { -# source = "../shared/container_networking" +module "api_network_route" { # experiment with uncommenting + source = "../shared/container_networking" -# cf_org_name = local.cf_org_name -# cf_space_name = local.cf_space_name -# source_app_name = "${local.app_name}-${local.env}" -# destination_app_name = "notify-api-${local.env}" -# } + cf_org_name = local.cf_org_name + cf_space_name = local.cf_space_name + source_app_name = "${local.app_name}-${local.env}" + destination_app_name = "notify-api-${local.env}" +}