Skip to content

Commit

Permalink
Updated group deployment to deployment group for app insights deploy …
Browse files Browse the repository at this point in the history
…and removed no-wait from cosmosdb create
  • Loading branch information
Steve Griffith committed Mar 24, 2020
1 parent 5e9d6df commit 5d4c13b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions labs/build-application/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ In this lab we will build Docker containers for each of the application componen
# Create a unique application insights name
APPINSIGHTSNAME=appInsightshackfest$UNIQUE_SUFFIX
# Deploy the appinsights ARM template
az group deployment create --resource-group $RGNAME --template-file labs/build-application/app-Insights.json --parameters type=Node.js name=$APPINSIGHTSNAME regionId=eastus --no-wait
az deployment group create --resource-group $RGNAME --template-file labs/build-application/app-Insights.json --parameters type=Node.js name=$APPINSIGHTSNAME regionId=eastus --no-wait
```

Alternatively :
Expand All @@ -95,7 +95,7 @@ In this lab we will build Docker containers for each of the application componen
# Persist for Later Sessions in Case of Timeout
echo export COSMOSNAME=cosmos$UNIQUE_SUFFIX >> ~/.bashrc
# Create Cosmos DB
az cosmosdb create --name $COSMOSNAME --resource-group $RGNAME --kind MongoDB --no-wait
az cosmosdb create --name $COSMOSNAME --resource-group $RGNAME --kind MongoDB
```
You can validate your Cosmos instance in the portal. The credentials and connect string will be used in the next lab.
Expand Down

0 comments on commit 5d4c13b

Please sign in to comment.