标签:
?
该种方式是推荐的进行Automation认证的方式,好处在于安全性高,过期时间由自己控制,不好的地方在于大家在Windows上要生成证书比较麻烦,而且必须上传到Azure management和Automation,
Automation需要两个文件:.pfx证书用于用户自动化端连接Azure,.cer文件,Azure管理端证书文件,这两个文件必须互相匹配。
对于创建证书,个人比较推荐的办法,或者我喜欢用的方法,就是利用开源的openssl工具,几个命令快速搞定,我在我的本机安装的是Ubuntu on windows,非常方便,大家感兴趣可以参考:
http://cloudapps.blog.51cto.com/3136598/1761954
?
$ openssl req -x509 -days 365 -newkey rsa:1024 -keyout server-key.pem -out server-cert.pem
?
?
$ openssl pkcs12 -export -in server-cert.pem -inkey server-key.pem -out mycert.pfx
?
?
?
$ openssl x509 -inform pem -in server-cert.pem -outform der -out mycert.cer
?
?
?
?
你也可以使用Windows的makecert工具生成Azure需要的cer和pfx文件。
?
https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk
https://developer.microsoft.com/en-us/windows/downloads/windows-8-sdk
?
?
makecert.exe -sky exchange -r -n "CN=AzureAutomation" -pe -a sha1 -len 2048 -ss My "AzureAutomation.cer"
?
?
?
?
#myautomation是pfx的密码,在导入到Azure Automation时需要使用
$MyPwd = ConvertTo-SecureString -String "myautomation" -Force –AsPlainText
?
# "AzureAutomation"是certificate的名字,在第一步生成的
$AzureCert = Get-ChildItem -Path Cert:\CurrentUser\My | where {$_.Subject -match "AzureAutomation"}
?
#导出生成pfx文件
Export-PfxCertificate -FilePath C:\AzureAutomation.pfx -Password $MyPwd -Cert $AzureCert
?
?
无论你是使用Linux还是Windows生成证书,必须确保你有一个X509的cer证书和一个带密码的pfx证书,前者用于上传到management证书,pfx上传给runbook的资产作为授权凭证。
?
?
?
在后续章节中介绍如何使用凭证进行验证使用。
?
?
?
利用Azure Automation实现云端自动化运维(3)
标签:
原文地址:http://www.cnblogs.com/cloudapps/p/5498482.html