Azure Key Vault · Schema
SecretBundle
A secret consisting of a value, id and its attributes.
CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The secret value. |
| id | string | The secret id. |
| contentType | string | The content type of the secret. |
| tags | object | Application specific metadata in the form of key-value pairs. |
| kid | string | If this is a secret backing a KV certificate, then this field specifies the corresponding key backing the KV certificate. |
| managed | boolean | True if the secret's lifetime is managed by key vault. If this is a secret backing a certificate, then managed will be true. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SecretBundle",
"type": "object",
"description": "A secret consisting of a value, id and its attributes.",
"properties": {
"value": {
"type": "string",
"description": "The secret value."
},
"id": {
"type": "string",
"description": "The secret id."
},
"contentType": {
"type": "string",
"description": "The content type of the secret."
},
"tags": {
"type": "object",
"description": "Application specific metadata in the form of key-value pairs."
},
"kid": {
"type": "string",
"description": "If this is a secret backing a KV certificate, then this field specifies the corresponding key backing the KV certificate."
},
"managed": {
"type": "boolean",
"description": "True if the secret's lifetime is managed by key vault. If this is a secret backing a certificate, then managed will be true."
}
}
}