我想编写一个使用azure power shell运行的脚本来自动添加Web应用程序配置
Azure> MyWebApp>应用程序设置>应用设置
看起来像是key =“value”
我写这个脚本
###########################
# MyApp Config Automation #
###########################
#Begin
$subscriptionName="MySubscriptionName"
$webSiteName="MyWebAppName"
$storageAccountName="StorageAccountName"
########################################
$userName = "myaccount@outlook.com"
$securePassword = ConvertTo-SecureString -String "mypass" -AsPlainText -Force
#####################################
$cred = New-Object System.Management.Automation.PSCredential($userName, $securePassword)
#####################################
Add-AzureAccount -Credential $cred
Select-AzureSubscription -SubscriptionName $subscriptionName -Default
#####################################
Get-AzureWebsite -Name $webSiteName
#End
但我知道上面的脚本只是获取我的Web应用程序,现在我需要访问MyWebApp>应用程序设置>应用程序设置并提供我的新应用程序设置的脚本文件/数组以及脚本检查是否有任何新的应用程序设置键,它会将其添加到应用程序设置,如果有任何现有的键,它将覆盖它的值。 什么是步骤或APIS或我能用天蓝色电源壳做到这一点?
编辑: 此脚本可以自动创建新的Web应用程序并向其添加应用程序设置:
##############################################
# Creating website and Adding Configs Script #
##############################################
$webSiteName="mywebsite"
$storageAccountName="storageaccount"
$subscriptionName="mysubsc"
$userName = "myaccount"
$securePassword = ConvertTo-SecureString -String "mypass" -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential($userName, $securePassword)
Add-AzureAccount -Credential $cred
Select-AzureSubscription -SubscriptionName $subscriptionName -Default
New-AzureWebsite -Name $webSiteName
New-AzureStorageAccount –StorageAccountName $storageAccountName -Location "South Central US"
$ClientId="dfgdf6"
$Password="ffefe"
$StorageAccountKey = Get-AzureStorageKey -StorageAccountName $storageAccountName
$AppSettings = @{"StorageAccountPrimary" = $StorageAccountKey.Primary;"StorageAccountSecondary" = $StorageAccountKey.Secondary;"ida:ClientId"=$ClientId;"ida:Password"=$Password}
Set-AzureWebsite -Name $webSiteName -AppSettings $AppSettings
答案 0 :(得分:79)
以下是基于12/2015 Azure PowerShell命令的更新。该示例适用于特定于插槽的设置,如果需要全局,请使用Get / Set-AzureRmWebApp并删除-slot参数。
$myResourceGroup = 'PartsUnlimitedMRP'
$mySite = 'centpartsunlimited'
$webApp = Get-AzureRMWebAppSlot -ResourceGroupName $myResourceGroup -Name $mySite -Slot production
$appSettingList = $webApp.SiteConfig.AppSettings
$hash = @{}
ForEach ($kvp in $appSettingList) {
$hash[$kvp.Name] = $kvp.Value
}
$hash['NewKey'] = "NewValue"
$hash['ExistingKey'] = "NewValue"
Set-AzureRMWebAppSlot -ResourceGroupName $myResourceGroup -Name $mySite -AppSettings $hash -Slot production
答案 1 :(得分:13)
首先设置这两个变量。
$myResourceGroup = 'RESOURCE_GROUP_NAME'
$mySite = 'SITE_NAME'
然后切换到新的资源管理器模式并登录到您的帐户。
Switch-AzureMode AzureResourceManager
Get-AzureAccount
然后检索应用设置。 (注意后面的勾号(`)表示换行。)
(Invoke-AzureResourceAction -ResourceGroupName $myResourceGroup `
-ResourceType Microsoft.Web/sites/Config -Name $mySite/appsettings `
-Action list -ApiVersion 2015-08-01 -Force).Properties
要更新设置,请先将它们放入变量中。
$props = (Invoke-AzureResourceAction -ResourceGroupName $myResourceGroup `
-ResourceType Microsoft.Web/sites/Config -Name $mySite/appsettings `
-Action list -ApiVersion 2015-08-01 -Force).Properties
使用Set-AzureWebsite
将变量转换为哈希表。
$hash = @{}
$props | Get-Member -MemberType NoteProperty | % { $hash[$_.Name] = $props.($_.Name) }
现在在哈希表中添加/更新值。
$hash.NewKey = "NewValue"
$hash.ExistingKey = "NewValue"
然后切换回服务管理模式并提交设置。
Switch-AzureMode AzureServiceManagement
Set-AzureWebsite -Name $mySite -AppSettings $hash
$myResourceGroup = 'RESOURCE_GROUP_NAME'
$mySite = 'SITE_NAME'
Switch-AzureMode AzureResourceManager
Get-AzureAccount
(Invoke-AzureResourceAction -ResourceGroupName $myResourceGroup `
-ResourceType Microsoft.Web/sites/Config -Name $mySite/appsettings `
-Action list -ApiVersion 2015-08-01 -Force).Properties
$props = (Invoke-AzureResourceAction -ResourceGroupName $myResourceGroup `
-ResourceType Microsoft.Web/sites/Config -Name $mySite/appsettings `
-Action list -ApiVersion 2015-08-01 -Force).Properties
$hash = @{}
$props | Get-Member -MemberType NoteProperty | % { $hash[$_.Name] = $props.($_.Name) }
$hash.NewKey = "NewValue"
$hash.ExistingKey = "NewValue"
Switch-AzureMode AzureServiceManagement
Set-AzureWebsite -Name $mySite -AppSettings $hash
AzureServiceManagement和AzureResourceManager不适用于同一会话。目前,后者似乎不允许通过Set-AzureResource
更新应用设置。以上是一种解决方法。另一种方法是使用Azure CLI而不是PowerShell。
答案 2 :(得分:3)
由于不赞成使用原始Azure PowerShell和AzureRM,因此这些答案显示了年龄。要使用Az PowerShell模块执行此操作,它应如下所示:
Connect-AzAccount
$site = Get-AzWebApp -Name foo-com-dev-as
$oldSettings = ($site.SiteConfig.AppSettings | % { $h = @{} } { $h[$_.Name] = $_.Value } { $h })
$newSettings = @{ StorageAccountPrimary = $StorageAccountKey.Primary
StorageAccountSecondary = $StorageAccountKey.Secondary
"ida:ClientId" = $ClientId
"ida:Password" = $Password }
Set-AzWebApp -ResourceGroupName foo-com-dev-rg -Name foo-com-dev-as -AppSettings ($oldSettings + $newSettings)
Connection-AzAccount
-连接到Azure帐户,如果需要选择订阅,则可能需要执行后续步骤$site = Get-AzWebApp
...-检索要修改的网站$oldSettings
...-获取所有现有设置并将其放入HashTable中
$site.SiteConfig.AppSettings | %
-通过ForEach-Object
的速记别名管道(通过)每个设置{ $h = @{} }
-通过HashTable
位置参数创建-Begin
{ $h[$_.Name] = $_Value }
-通过HashTable
位置参数为$site.SiteConfig.AppSettings
中的每个值向-Process
添加一个命名值{ $h }
-通过HashTable
位置参数将新填充的-End
返回到左侧的变量$newSettings = @{
...-创建HashTable
的设置以添加Set-AzWebApp
...-合并两个HashTable,并用合并的集合替换现有的AppSettings。请注意,这假设您在新旧设置之间没有重复。如果您遇到这种情况,则需要以一种对您有意义的方式进行重复数据删除,即覆盖/不覆盖。