我有一个自签名证书,我正在尝试将其导入 Azure Key Vault 证书,但我遇到了问题。我不是使用Import-AzKeyVaultCertificate
命令,而是使用 API。
我成功地通过 API 路由创建了一个密钥,但在我的一生中,我无法导入证书。仅供参考,当我通过 Azure DevOps 管道执行此操作时,它也可以工作,所以我知道服务原则不是问题。
这是我创建证书的方式(在本地通过 PowerShell - 这里的所有示例都是本地的,而不是用于 Azure DevOps):
$certroopath = "C:\cert"
$location = "eastus"
$vmName = "arsmpvm"
$certname = "$vmName"
$certpassword = "P@ssw0rd1234"
$cert = New-SelfSignedCertificate -DnsName "$certname" -CertStoreLocation cert:\LocalMachine\My
$pwd = ConvertTo-SecureString -String $certpassword -Force -AsPlainText
$certwithThumb = "cert:\localMachine\my\"+$cert.Thumbprint
$filepath = "$certroopath\$certname.pfx"
Export-PfxCertificate -cert $certwithThumb -FilePath $filepath -Password $pwd
Remove-Item -Path $certwithThumb
以下是我通过 POST 操作导入证书的方式:
$pfxcontent = Get-Content 'C:\cert\arsmpvm.pfx' -Encoding Byte
$base64Stringpfxcontent = [System.Convert]::ToBase64String($pfxcontent)
#The payload
$json_new = '{
"value": "$base64Stringpfxcontent",
"pwd": "$pwd",
"policy": {
"key_props": {
"exportable": true,
"kty": "RSA",
"key_size": 2048,
"reuse_key": false
},
"secret_props": {
"contentType": "application/x-pem-file"
}
}
}'
$header = @{Authorization = "Bearer " + $token.access_token}
Invoke-RestMethod -Method Post -Uri "https://$kvname.vault.azure.net/certificates/$certname/import?api-version=7.0" -Body $json_new -Headers $header -ContentType "application/json"
这是我抛出的错误:
Invoke-RestMethod : {"error":{"code":"BadParameter","message":"The specified PEM X.509 certificate content is in an unexpected format. Please check if certificate is in valid PEM format."}}
即使我将$base64Stringpfxcontent
(in $json_new
) 的值替换为它的内容,就像一个 3500 字符字符串,我也会遇到同样的问题。即使我更改$pwd
为它的硬编码值,即P@ssw0rd1234
,我也会抛出相同的错误。
参考资料来自:https ://docs.microsoft.com/en-us/rest/api/keyvault/importcertificate/importcertificate