Skip to content

Instantly share code, notes, and snippets.

@astaykov
Created March 31, 2015 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astaykov/ba6322525188c53f5bda to your computer and use it in GitHub Desktop.
Save astaykov/ba6322525188c53f5bda to your computer and use it in GitHub Desktop.
Create Azure Web Sites in given Farm
Switch-AzureMode -Name AzureResourceManager
Add-AzureAccount
Select-AzureSubscription "Your Subscription Name"
New-AzureResource -Name NewWebSite `
-Location "West Europe" `
-ResourceGroupName 'Default-Web-WestEurope' `
-ResourceType 'Microsoft.Web/sites' `
-ApiVersion '2014-04-01-preview' `
-PropertyObject @{ 'ServerFarm' = 'DefaultServerFarm' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment