HashiCorp Vault · JSON Structure

Vault Sys Auth Method Config Structure

AuthMethodConfig schema from HashiCorp Vault API

Type: object Properties: 3
DevOpsEncryptionOpen SourcePKISecrets ManagementSecurity

AuthMethodConfig is a JSON Structure definition published by HashiCorp Vault, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type description accessor

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vault/refs/heads/main/json-structure/vault-sys-auth-method-config-structure.json",
  "name": "AuthMethodConfig",
  "description": "AuthMethodConfig schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Auth method type.",
      "example": "approle"
    },
    "description": {
      "type": "string",
      "description": "Description of the auth method.",
      "example": "AppRole auth method"
    },
    "accessor": {
      "type": "string",
      "description": "Accessor for the auth method.",
      "example": "auth_approle_abc123"
    }
  }
}