查看 Azure KeyVault 中 Secret 的内容

View contents of Secret in Azure KeyVault

这似乎是一个非常基本的问题,但我在 Azure 中创建了一个 KeyVault 并向其中添加了两个 Secret,它们是使用 ConvertTo-SecureString 保护的纯文本 'hello world' 示例。

使用 Get-AzureKeyVaultSecret 我可以看到有两个条目,还可以看到每个条目的唯一 URI,但是我似乎无法找到任何方法来实际检索 'hello world' 我添加到每个秘密中的文本。

任何人都可以提供缺少的 link,因为 Microsoft 站点上的当前文档目前不是太广泛。

像这样的事情应该做...

$key = Add-AzureKeyVaultKey -VaultName DeploymentVault `
                            -Name test1 -Destination Software

$securepwd = ConvertTo-SecureString –String '123' –AsPlainText –Force

$secrets = Set-AzureKeyVaultSecret -VaultName DeploymentVault `
                                   -Name test1 `
                                   -SecretValue $securepwd

$secret = Get-AzureKeyVaultSecret -VaultName DeploymentVault -Name test1

$secret.SecretValueText

哪个returns123