Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bradygaster committed Jun 7, 2020
1 parent 87474c7 commit 2fd757d
Showing 1 changed file with 8 additions and 23 deletions.
31 changes: 8 additions & 23 deletions create-resources.azcli
Original file line number Diff line number Diff line change
@@ -1,28 +1,13 @@
#!/bin/bash

# the name of the resource group
resourceGroup="covid-screening-app-resources-05"

# the name of the api management resource
apimName="screening-apis-05"

# the owner name of the API management instance
publisherName="Ralphdalf"

# the owner email of the API management instance
publisherEmail="notralphsrealemail@microsoft.com"

# the name of the cosmos db resource
cosmosDbName="screeningcosmosdb-05"

# the name of the app service plan for the app service
appServicePlanName="covidscreeningappapi-west-plan-05"

# the name of the app service that'll host the code
appServiceName="covidscreeningappapi-west-05"

# the region in which we want things to be created
region="westus"
resourceGroup="covid-screening-app-resources-05" # the name of the resource group
apimName="screening-apis-05" # the name of the api management resource
publisherName="Ralphdalf" # the owner name of the API management instance
publisherEmail="notralphsrealemail@microsoft.com" # the owner email of the API management instance
cosmosDbName="screeningcosmosdb-05" # the name of the cosmos db resource
appServicePlanName="covidscreeningappapi-west-plan-05" # the name of the app service plan for the app service
appServiceName="covidscreeningappapi-west-05" # the name of the app service that'll host the code
region="westus" # the region in which we want things to be created

# create the resource group
echo "Creating the resource group"
Expand Down

0 comments on commit 2fd757d

Please sign in to comment.