HashiCorp Vault · Schema

MountConfig

MountConfig schema from HashiCorp Vault API

DevOpsEncryptionOpen SourcePKISecrets ManagementSecurity

Properties

Name Type Description
type string Secrets engine type.
description string Description of the mount.
accessor string Mount accessor.
options object
View JSON Schema on GitHub

JSON Schema

vault-sys-mount-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vault/refs/heads/main/json-schema/vault-sys-mount-config-schema.json",
  "title": "MountConfig",
  "description": "MountConfig schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Secrets engine type.",
      "example": "kv"
    },
    "description": {
      "type": "string",
      "description": "Description of the mount.",
      "example": "Key-Value store"
    },
    "accessor": {
      "type": "string",
      "description": "Mount accessor.",
      "example": "kv_abc123"
    },
    "options": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}