Microsoft Azure · Schema

SecretBundle

A secret consisting of a value, id, and attributes.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
value string The secret value.
id string The secret identifier.
contentType string The content type of the secret.
tags object Application-specific metadata.
kid string If the secret is backing a KV certificate, then this field specifies the corresponding key backing the certificate.
managed boolean Whether the secret's lifetime is managed by Key Vault.
View JSON Schema on GitHub

JSON Schema

azure-key-vault-secret-bundle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SecretBundle",
  "type": "object",
  "description": "A secret consisting of a value, id, and attributes.",
  "properties": {
    "value": {
      "type": "string",
      "description": "The secret value."
    },
    "id": {
      "type": "string",
      "description": "The secret identifier."
    },
    "contentType": {
      "type": "string",
      "description": "The content type of the secret."
    },
    "tags": {
      "type": "object",
      "description": "Application-specific metadata."
    },
    "kid": {
      "type": "string",
      "description": "If the secret is backing a KV certificate, then this field specifies the corresponding key backing the certificate."
    },
    "managed": {
      "type": "boolean",
      "description": "Whether the secret's lifetime is managed by Key Vault."
    }
  }
}