Skip to content

Commit

Permalink
fix: update web-app app-configuration variable (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchell-liatrio authored Jan 25, 2024
1 parent 71de488 commit 879bbe5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/web-app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

Expand Down
2 changes: 1 addition & 1 deletion modules/web-app/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ variable "azure_app_configuration_object_id" {
type = string
}

variable "azure_app_configuration_endpoint" {
variable "app_configuration_endpoint" {
type = string
}

Expand Down

1 comment on commit 879bbe5

@atiterlea
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't this break our main config file at line 152?

Please sign in to comment.