Skip to content

Instantly share code, notes, and snippets.

@mikepfeiffer
Last active March 14, 2020 14:30
Show Gist options
  • Save mikepfeiffer/81f0bee5fb1f4c9f5e0fc117bd843a32 to your computer and use it in GitHub Desktop.
Save mikepfeiffer/81f0bee5fb1f4c9f5e0fc117bd843a32 to your computer and use it in GitHub Desktop.
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