gpt4 book ai didi

AzureCLI 获取过期的保管库 secret

转载 作者:行者123 更新时间:2023-12-03 05:20:14 26 4
gpt4 key购买 nike

有没有办法使用 CLI 列出 Azure Key Vault 中的所有过期 secret ?到目前为止我已经

az keyvault secret list --vault-name <MyVault> --output table --query [*].'{"Id":id,"expires":attributes.expires}'

这显示了一个列表

|身份证 |过期|

|键1 | 2022-07-08 1200|

|键2 | 2022-01-01 1200|

我希望能够在 attribute.expires 上设置条件,例如attribute.expires < GetDate()

因此只返回Key2

最佳答案

您可以在此处找到完整文档:

这是一个用于查询所有过期 secret 的 PowerShell 示例:

$vaultName = "<vault-name>"
$today = Get-Date -Format "yyyy-MM-dd"

az keyvault secret list `
--vault-name $vaultName `
--query "[?attributes.expires <= '$today'].{Id:id, expires:attributes.expires}"

关于AzureCLI 获取过期的保管库 secret ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72913589/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com