From 4de1dccd7f574bdb5256395af3fa7e8302dda269 Mon Sep 17 00:00:00 2001 From: Kegan Maher Date: Wed, 12 Jun 2024 14:01:23 -0700 Subject: [PATCH] fix(terraform): add container config block it seems like Deployment Center is stuck with pending changes --- terraform/app_service.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/terraform/app_service.tf b/terraform/app_service.tf index e025e2d319..af9392351a 100644 --- a/terraform/app_service.tf +++ b/terraform/app_service.tf @@ -106,6 +106,14 @@ resource "azurerm_app_service_source_control" "main" { repo_url = "https://github.com/cal-itp/benefits" branch = local.env_name use_manual_integration = true + + github_action_configuration { + generate_workflow_file = false + container_configuration { + registry_url = "https://ghcr.io/" + image_name = "cal-itp/benefits" + } + } } resource "azurerm_app_service_custom_hostname_binding" "main" {