HashiCorp Vault · Schema

EnableMountRequest

EnableMountRequest schema from HashiCorp Vault API

DevOpsEncryptionOpen SourcePKISecrets ManagementSecurity

Properties

Name Type Description
type string Type of secrets engine to mount.
description string Human-friendly description.
options object
View JSON Schema on GitHub

JSON Schema

vault-sys-enable-mount-request-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-enable-mount-request-schema.json",
  "title": "EnableMountRequest",
  "description": "EnableMountRequest schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of secrets engine to mount.",
      "example": "kv"
    },
    "description": {
      "type": "string",
      "description": "Human-friendly description.",
      "example": "Application secrets"
    },
    "options": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "type"
  ]
}