From 879bbe52d680c5c3e0797eef7efe039a8802fe05 Mon Sep 17 00:00:00 2001 From: Mitchell Phillips Date: Thu, 25 Jan 2024 09:51:36 -0600 Subject: [PATCH] fix: update web-app app-configuration variable (#105) --- modules/web-app/main.tf | 2 +- modules/web-app/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/web-app/main.tf b/modules/web-app/main.tf index ec46f6e..a660e6f 100644 --- a/modules/web-app/main.tf +++ b/modules/web-app/main.tf @@ -32,7 +32,7 @@ resource "azurerm_linux_web_app" "gh_webhook_runner_controller_app" { https_only = true app_settings = { - AZURE_APP_CONFIGURATION_ENDPOINT = var.azure_app_configuration_endpoint + AZURE_APP_CONFIGURATION_ENDPOINT = var.app_configuration_endpoint DOCKER_ENABLE_CI = "true" #DOCKER_REGISTRY_SERVER_URL = "https://${var.docker_registry_url}" diff --git a/modules/web-app/variables.tf b/modules/web-app/variables.tf index b4478d7..2a46164 100644 --- a/modules/web-app/variables.tf +++ b/modules/web-app/variables.tf @@ -18,7 +18,7 @@ variable "azure_app_configuration_object_id" { type = string } -variable "azure_app_configuration_endpoint" { +variable "app_configuration_endpoint" { type = string }