From 09fe3bbdd4bcc8b6cf29cc49d571cdf65812096a Mon Sep 17 00:00:00 2001 From: Yamini-Microsoft Date: Fri, 17 Apr 2026 00:57:40 +0530 Subject: [PATCH] fix: Wire tags parameter in main.parameters.json for azd env support The tags parameter was defined in main.bicep but not mapped in main.parameters.json, so users could not pass custom tags via azd env set AZURE_TAGS. This is needed to support SFI policy bypass by setting Securitycontrol:Ignore tag on the resource group before Event Hub creation (which requires local auth enabled). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- infra/main.parameters.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/infra/main.parameters.json b/infra/main.parameters.json index faf8053..08b853b 100644 --- a/infra/main.parameters.json +++ b/infra/main.parameters.json @@ -10,6 +10,9 @@ }, "existingFabricCapacityName": { "value": "${EXISTING_FABRIC_CAPACITY_NAME}" + }, + "tags": { + "value": "${AZURE_TAGS}" } } } \ No newline at end of file