Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Deploy applications and infrastructure to Azure using Copilot-guided workflows and Azure MCP
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/recipes/bicep/verify.md
1# Bicep Verification23```bash4az resource list --resource-group <rg-name> --output table5```67## Get Deployment Outputs89```bash10az deployment sub show \11--name main \12--query properties.outputs13```1415## Health Check1617```bash18curl -s https://<endpoint>/health | jq .19```2021## Report Results to User2223> ⛔ **MANDATORY** — You **MUST** present the deployed endpoint URLs to the user in your response.2425Extract endpoints from deployment outputs:2627```bash28az deployment sub show --name main --query properties.outputs29```3031Present a summary including all service URLs as fully-qualified `https://` links. If a deployment output returns a bare hostname (e.g. `myapp.azurewebsites.net`), always prepend `https://`. Do NOT end your response without including them.32