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 }