I was testing expiration dates on a secret in Azure Key Vault, and I'd like to remove the expiration date, but the box is grayed out. Is it possible to remove the expiration?
I set the expiry time using this:
Update-AzureKeyVaultSecret -VaultName "Keys" -Name "ConnectionStringPPE" -Expires "1/1/2099 12:00:00 AM"
I wanted to unset it using this line but this no-ops:
Update-AzureKeyVaultSecret -VaultName "Keys" -Name "ConnectionStringPPE" -Expires $null