Kong · Schema

TLSTrustBundleConfig

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
trusted_ca string PEM-encoded list of trusted CA certificates used to verify client certificates. Can be a literal PEM string or a vault reference.
View JSON Schema on GitHub

JSON Schema

kong-tlstrustbundleconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TLSTrustBundleConfig",
  "title": "TLSTrustBundleConfig",
  "type": "object",
  "properties": {
    "trusted_ca": {
      "description": "PEM-encoded list of trusted CA certificates used to verify client certificates.\nCan be a literal PEM string or a vault reference.\n",
      "type": "string",
      "minLength": 1,
      "x-expression": {
        "type": "string",
        "fields": [
          "vault"
        ]
      }
    }
  },
  "required": [
    "trusted_ca"
  ]
}