@@ -612,3 +612,46 @@ To debug the MCP server by adding the following launch.json entry:
612612 ]
613613 }
614614```
615+ ## Known Issues
616+
617+ **Below are currently identified issues with workarounds. Please review before reaching out for support.**
618+
619+ ### Unable to update/add environment variables in Azure Container App
620+
621+ You may encounter issues when attempting to modify environment variables or container configuration in Azure Container Apps:
622+
623+ **Affected Scenarios:**
624+ - **App Authentication Setup:** When adding authentication-related environment variables
625+ - **Environment Variable Management:** Updating or deleting existing environment variables
626+ - **Container Configuration:** When trying to edit ACR name, image, or tag information for Container Apps
627+
628+ **Root Cause:**
629+ A known issue in the Azure Portal prevents updating Container Apps configurations. This affects both environment variables and container settings.
630+
631+ **Workaround - Use Azure CLI:**
632+
633+ Until this issue is resolved, use Azure CLI commands to add or update environment variables and container configurations:
634+
635+ **For Environment Variables:**
636+ ```bash
637+ # Update environment variables
638+ az containerapp update \
639+ --name <container-app-name> \
640+ --resource-group <resource-group-name> \
641+ --set-env-vars "KEY1=value1" "KEY2=value2"
642+ ```
643+
644+ **For Container Image Updates:**
645+ ```bash
646+ # Update container image
647+ az containerapp update \
648+ --name <container-app-name> \
649+ --resource-group <resource-group-name> \
650+ --image <registry>/<image>:<tag>
651+ ```
652+
653+ 📖 **Detailed CLI Documentation:**
654+ - [Manage environment variables](https://learn.microsoft.com/en-us/azure/container-apps/environment-variables?tabs=cli)
655+ - [Manage revisions](https://learn.microsoft.com/en-us/azure/container-apps/revisions-manage?tabs=bash)
656+
657+ > **Note:** This is a temporary workaround. The documentation will be updated once the Azure Portal issue is resolved.
0 commit comments