This file contains hidden or 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
#Currently there is an issue with New-AzureRmWebAppSlot so this snippet doesn't work. | |
#Issue entered here: https://github.com/Azure/azure-powershell/issues/3779 | |
#Stay tuned! | |
Param( | |
[string] [Parameter(Mandatory=$true)] $SubscriptionId, | |
[string] [Parameter(Mandatory=$true)] $ResourceGroupName, | |
[string] [Parameter(Mandatory=$true)] $AppServicePlan, | |
[string] [Parameter(Mandatory=$true)] $WebAppName, | |
[string] [Parameter(Mandatory=$true)] $SlotName |
This file contains hidden or 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
# PowerShell script to deploy Sitecore 8.2.1 XM default ARM Template. | |
# Located here: https://raw.githubusercontent.com/Sitecore/Sitecore-Azure-Quickstart-Templates/master/Sitecore%208.2.1/xm | |
Param( | |
[string] [Parameter(Mandatory=$true)] $SubscriptionId, | |
[string] [Parameter(Mandatory=$true)] $ResourceGroupName, | |
[string] $ResourceGroupLocation = "East US", | |
[string] $TemplateFile = "https://raw.githubusercontent.com/Sitecore/Sitecore-Azure-Quickstart-Templates/master/Sitecore%208.2.1/xm/azuredeploy.json", | |
[string] [Parameter(Mandatory=$true)] $LicenseFile, | |
[string] $CdMsDeployPackageUrl = 'TO_REPLACE', |
NewerOlder