如何将 api 密钥添加到 Azure 自动化帐户的凭据?
How to add an api key to the Credentials of Azure Automation Account?
我想将我的 sendgrid 帐户的 api 密钥添加到 Azure 自动化帐户。
我做了搜索,但没有运气。
我应该怎么做?提前致谢!
您可以在密码中添加您的 api 密钥并设置相关的用户名(它不会验证用户名和密码之间的连接),如下所示:
通常我们使用Get-AutomationPSCredential
获取凭证并获取其用户名和密码
$myCred = Get-AutomationPSCredential -Name 'MyCredential'
$userName = $myCred.UserName
$securePassword = $myCred.Password
$password = $myCred.GetNetworkCredential().Password
目前,您只需要获取密码,即 sendgrid api 密钥。
我想将我的 sendgrid 帐户的 api 密钥添加到 Azure 自动化帐户。
我做了搜索,但没有运气。
我应该怎么做?提前致谢!
您可以在密码中添加您的 api 密钥并设置相关的用户名(它不会验证用户名和密码之间的连接),如下所示:
通常我们使用Get-AutomationPSCredential
获取凭证并获取其用户名和密码
$myCred = Get-AutomationPSCredential -Name 'MyCredential'
$userName = $myCred.UserName
$securePassword = $myCred.Password
$password = $myCred.GetNetworkCredential().Password
目前,您只需要获取密码,即 sendgrid api 密钥。