Azure Key Vault · Schema

LifetimeAction

Action and its trigger that will be performed by Key Vault over the lifetime of a certificate.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
trigger object The condition that will execute the action.
action object The action that will be executed.
View JSON Schema on GitHub

JSON Schema

azure-key-vault-data-plane-lifetime-action-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LifetimeAction",
  "type": "object",
  "description": "Action and its trigger that will be performed by Key Vault over the lifetime of a certificate.",
  "properties": {
    "trigger": {
      "type": "object",
      "description": "The condition that will execute the action."
    },
    "action": {
      "type": "object",
      "description": "The action that will be executed."
    }
  }
}