Skip to content

Commit 01d08b2

Browse files
Fix blog 5.4: use json output for deployment show, add webapp list command
1 parent 1fbd9df commit 01d08b2

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

blogs/series-5-devops-data/5.4-azure-bicep-infrastructure.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,10 +334,19 @@ az deployment group show \
334334
--resource-group rg-talent-dev \
335335
--name main \
336336
--query properties.outputs \
337+
--output json
338+
```
339+
340+
Or list all web app URLs directly:
341+
342+
```bash
343+
az webapp list \
344+
--resource-group rg-talent-dev \
345+
--query "[].{Name:name, URL:defaultHostName}" \
337346
--output table
338347
```
339348

340-
The outputs show the URLs for the API, IdentityServer, and Angular apps. Save these — they are needed in Article 5.8 when configuring IdentityServer redirect URIs and API CORS settings.
349+
The outputs show the URLs for the API, IdentityServer, Admin UI, and Angular apps. Save these — they are needed in Article 5.8 when configuring IdentityServer redirect URIs and API CORS settings.
341350

342351
---
343352

0 commit comments

Comments
 (0)