From cc9e13cfdbddb2cfbdead28ba1b016158bcef129 Mon Sep 17 00:00:00 2001 From: halprin Date: Wed, 27 Sep 2023 16:10:06 -0600 Subject: [PATCH] Rename the API and the docs because Azure is stupid --- operations/template/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operations/template/main.tf b/operations/template/main.tf index 22723bab3..0a82e02eb 100644 --- a/operations/template/main.tf +++ b/operations/template/main.tf @@ -37,7 +37,7 @@ resource "azurerm_service_plan" "plan" { # Create the staging App Service resource "azurerm_linux_web_app" "api" { - name = "cdcti-${var.environment}-api" + name = "cdcti-${var.environment}-api2" resource_group_name = data.azurerm_resource_group.group.name location = azurerm_service_plan.plan.location service_plan_id = azurerm_service_plan.plan.id @@ -62,7 +62,7 @@ resource "azurerm_linux_web_app" "api" { } resource "azurerm_storage_account" "docs" { - name = "cdcti${var.environment}docs" + name = "cdcti${var.environment}docs2" resource_group_name = data.azurerm_resource_group.group.name location = data.azurerm_resource_group.group.location account_tier = "Standard"