我正在使用 KeyVault 来存储Ocp-Apim-Subscription-Key
. 应用程序正在从 KeyVault 获取此密钥并成功向 API 管理发出请求。
但是现在,我想Ocp-Apim-Subscription-Key
在 Runbooks 中使用 powershell 脚本频繁地旋转它。我找不到Ocp-Apim-Subscription-Key
通过 powershell 重新生成的方法。这可能吗 ?如果还有其他选项可以轮换此密钥,请告诉我。
我正在使用 KeyVault 来存储Ocp-Apim-Subscription-Key
. 应用程序正在从 KeyVault 获取此密钥并成功向 API 管理发出请求。
但是现在,我想Ocp-Apim-Subscription-Key
在 Runbooks 中使用 powershell 脚本频繁地旋转它。我找不到Ocp-Apim-Subscription-Key
通过 powershell 重新生成的方法。这可能吗 ?如果还有其他选项可以轮换此密钥,请告诉我。
绝对可以通过API:
也应该在PS中的某个地方。
# Get API Management Services information and set context
$ApiManagements = Get-AzApiManagement
foreach ($ApiManagement in $ApiManagements)
{
$ApiManagementContext = New-AzApiManagementContext -ResourceId $ApiManagement.Id
# Get all API Management Subscriptions
$ApiManagementSubscriptions = Get-AzApiManagementSubscription -Context $ApiManagementContext
foreach ($ApiManagementSubscription in $ApiManagementSubscriptions)
{
# Update the Keys
$PrimaryKey = (New-Guid) -replace '-',''
$SecondaryKey = (New-Guid) -replace '-',''
Set-AzApiManagementSubscription -Context $ApiManagementContext -SubscriptionId $ApiManagementSubscription.SubscriptionId -PrimaryKey $PrimaryKey `
-SecondaryKey $SecondaryKey -State Active
}
}