From a0b4c244a7b43769a784f49c370987bd6de03b9a Mon Sep 17 00:00:00 2001 From: Maitiu O Ciarain Date: Wed, 11 Dec 2024 11:51:45 +0000 Subject: [PATCH] Add the svc-infra step to the make target --- dev-infrastructure/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-infrastructure/Makefile b/dev-infrastructure/Makefile index 30b1b6dd7..9309f4f70 100644 --- a/dev-infrastructure/Makefile +++ b/dev-infrastructure/Makefile @@ -200,6 +200,13 @@ svc.wait: svc: svc.wait svc.rg @scripts/cleanup-orphaned-rolebindings.sh $(SVC_RESOURCEGROUP) + az deployment group create \ + --name $(SVC_RG_DEPLOYMENT_NAME)-infra \ + --resource-group $(SVC_RESOURCEGROUP) \ + --template-file templates/svc-infra.bicep \ + $(PROMPT_TO_CONFIRM) \ + --parameters \ + configurations/svc-infra.bicepparam az deployment group create \ --name $(SVC_RG_DEPLOYMENT_NAME) \ --resource-group $(SVC_RESOURCEGROUP) \