Skip to content

Commit

Permalink
fix(terraform): turn on manual integration
Browse files Browse the repository at this point in the history
we don't want Azure continuous deployment / webhooks
  • Loading branch information
thekaveman committed Jun 12, 2024
1 parent 44c097a commit 53e6cb2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions terraform/app_service.tf
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,10 @@ resource "azurerm_linux_web_app" "main" {
}

resource "azurerm_app_service_source_control" "main" {
app_id = azurerm_linux_web_app.main.id
repo_url = "https://github.com/cal-itp/benefits"
branch = local.env_name
app_id = azurerm_linux_web_app.main.id
repo_url = "https://github.com/cal-itp/benefits"
branch = local.env_name
use_manual_integration = true
}

resource "azurerm_app_service_custom_hostname_binding" "main" {
Expand Down

0 comments on commit 53e6cb2

Please sign in to comment.