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/terraform/verify.md
1# Terraform Verification23```bash4terraform output5terraform output -json6```78## Health Check910```bash11curl -s https://$(terraform output -raw api_url)/health | jq .12```1314## Resource Check1516```bash17az resource list --resource-group $(terraform output -raw resource_group_name) --output table18```1920## Report Results to User2122> ⛔ **MANDATORY** — You **MUST** present the deployed endpoint URLs to the user in your response.2324Extract endpoints from Terraform outputs:2526```bash27terraform output -raw api_url28```2930Present a summary including all service URLs as fully-qualified `https://` links. If a Terraform output returns a bare hostname (e.g. `myapp.azurewebsites.net`), always prepend `https://`. Do NOT end your response without including them.31