Anthony Chu - Microsoft
@nthonyChu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
APPS=$(az functionapp list --query "[].{group: resourceGroup, name: name}" --output tsv) | |
IFS=$'\n' | |
for APP in $APPS | |
do | |
GROUP=$(echo $APP | cut -f 1) | |
NAME=$(echo $APP | cut -f 2) | |
VERSION=$(az functionapp config appsettings list -g $GROUP -n $NAME --query "[?name == 'FUNCTIONS_EXTENSION_VERSION'].value" --output tsv) |
Anthony Chu [email protected]
Anthony Chu | @nthonyChu | [email protected]
Anthony Chu | [email protected] | @nthonyChu
This method deploys the Tailwind Traders website with a SQL DB and Cosmos DB, and does not depend on backend microservices.
- Select
standalone
- Ensure you select a region where you're allowed to deploy SQL Databases and App Services, each of those services have restrictions for internal subs.
Anthony Chu | [email protected] | @nthonyChu