Azure rm module doesn't show any related commands to get keys from app configuration.
How to get Azure App configuration access keys using RM module in power shell
611 views Asked by twinkle hema At
2
There are 2 answers
2
On
I use the following.
Get-AzAppConfigurationStoreKey
-Name <String>
-ResourceGroupName <String>
[-SubscriptionId <String[]>]
[-DefaultProfile <PSObject>]
[-Confirm]
[-WhatIf]
[<CommonParameters>]
Reference docs: https://learn.microsoft.com/en-us/powershell/module/az.appconfiguration/get-azappconfigurationstorekey?view=azps-4.7.0
If you want to list access key of Azure App configuration with the AzureRM module, we can use the command
Invoke-AzureRmResourceAction
with actionlistkeys
.For example