2016-11-15 75 views
0

粘性應用程序/連接字符串設置試圖使用ARM創建插槽並使少量設置變得粘滯。使用Set-azurewebsite我們可以做到這一點,但通過使用ARM我們如何實現這一目標?通過ARM PowerShell

+0

什麼是置頂設置? – 4c74356b41

回答

0

這個Cmdlet叫做Set-AzureRmWebAppSlotConfigName,它確實如此。

例如,如果你想設置的應用程序設置被稱爲「AppSetting1」和「AppSetting2」,並呼籲「MyConnectionString」一個連接字符串作爲插槽設置,你應該做到以下幾點:

Set-AzureRmWebAppSlotConfigName -ResourceGroupName "myResourceGroup" -Name "myWebAppName" -AppSettingNames "AppSetting1, AppSetting2" -ConnectionStringNames "MyConnectionString"