Last active
March 14, 2020 14:30
-
-
Save mikepfeiffer/81f0bee5fb1f4c9f5e0fc117bd843a32 to your computer and use it in GitHub Desktop.
This file contains 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
New-AzResourceGroup -Name webapps-prod-rg | |
New-AzAppServicePlan -ResourceGroupName webapps-prod-rg ` | |
-Name 'gm-asp-prod-01' ` | |
-Location westus ` | |
-Tier s1 ` | |
-NumberofWorkers 1 | |
New-AzWebApp -ResourceGroupName webapps-prod-rg ` | |
-Name 'gm-webapp-prod-01' ` | |
-Location westus ` | |
-AppServicePlan gm-asp-prod-01 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment