Kong · Schema

Configuration Data-Plane Group Environment Field

Environment variable name and value to set for a data-plane group.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name string Name of the environment variable field to set for the data-plane group. Must be prefixed by KONG_.
value string Value assigned to the environment variable field for the data-plane group.
View JSON Schema on GitHub

JSON Schema

kong-configurationdataplanegroupenvironmentfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigurationDataPlaneGroupEnvironmentField",
  "title": "Configuration Data-Plane Group Environment Field",
  "description": "Environment variable name and value to set for a data-plane group.",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the environment variable field to set for the data-plane group. Must be prefixed by KONG_.\n",
      "type": "string",
      "format": "^KONG_[a-zA-Z_]+[a-zA-Z0-9_]*",
      "example": "KONG_LOG_LEVEL",
      "maxLength": 120,
      "minLength": 6
    },
    "value": {
      "description": "Value assigned to the environment variable field for the data-plane group.",
      "type": "string",
      "example": "info",
      "maxLength": 120,
      "minLength": 1
    }
  },
  "required": [
    "name",
    "value"
  ]
}