无法解析Azure Key Vault的远程名称

时间:2016-04-28 16:59:29

标签: azure

我已成功创建了一个Azure Key Vault,但我无法为其添加任何秘密。我按照说明(https://azure.microsoft.com/en-gb/documentation/articles/key-vault-get-started/),但是当我尝试

$secretvalue = ConvertTo-SecureString 'Pa$$w0rd' -AsPlainText -Force
$secret = Set-AzureKeyVaultSecret -VaultName 'ContosoKeyVault' -Name 'SQLPassword' -SecretValue $secretvalue

我得到了这个例外:

Set-AzureKeyVaultSecret : The remote name could not be resolved: 'mykeyvault.vault.azure.net'.

任何想法可能是什么问题?

2 个答案:

答案 0 :(得分:3)

这为我解决了这个问题:

ipconfig / flushdns

取自这里的问题:

https://github.com/Azure/azure-powershell/issues/1524

答案 1 :(得分:2)

我怀疑它可能与您的互联网连接,代理,机器上的某些设置等有关... 切换wifi网络修复了我的错误信息。