如何使用 RM 模块获取 Azure App 配置访问密钥 shell

How to get Azure App configuration access keys using RM module in power shell

Azure rm 模块不显示任何从应用程序配置中获取密钥的相关命令。

我用的是下面的

Get-AzAppConfigurationStoreKey
   -Name <String>
   -ResourceGroupName <String>
   [-SubscriptionId <String[]>]
   [-DefaultProfile <PSObject>]
   [-Confirm]
   [-WhatIf]
   [<CommonParameters>]

参考文档:https://docs.microsoft.com/en-us/powershell/module/az.appconfiguration/get-azappconfigurationstorekey?view=azps-4.7.0

如果你想使用AzureRM模块列出Azure App配置的访问密钥,我们可以使用命令Invoke-AzureRmResourceAction和操作listkeys

例如

Connect-AzureRmAccount


$keys=Invoke-AzureRmResourceAction -Action listKeys `
        -ResourceType "Microsoft.AppConfiguration/configurationStores" `
        -ResourceName "<>" `
        -ResourceGroupName "<>" -ApiVersion "2019-10-01" -Force 

$keys | ConvertTo-Json