From c1ad259e1c7ff821e3165c91e98fc7af63efa8b4 Mon Sep 17 00:00:00 2001 From: Abigail Cabascango Date: Thu, 18 Aug 2022 14:32:39 -0500 Subject: [PATCH] TTA-138 Optimize stage resource in azure --- infrastructure/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/main.tf b/infrastructure/main.tf index 23b9518d7..8943ab2f9 100644 --- a/infrastructure/main.tf +++ b/infrastructure/main.tf @@ -33,10 +33,10 @@ data "terraform_remote_state" "service" { } locals { - common_name = "time-tracker-ui" + common_name = "time-tracker-service" environment = terraform.workspace service_name = "${local.common_name}-${local.environment}" - create_app_service_plan = true + create_app_service_plan = false service_plan_kind = "Linux" image_name = "timetracker_ui" }