Kong · Schema

Azure Private DNS Resolver Attachment Config

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind object
dns_config object
View JSON Schema on GitHub

JSON Schema

kong-azureprivatednsresolverattachmentconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AzurePrivateDnsResolverAttachmentConfig",
  "title": "Azure Private DNS Resolver Attachment Config",
  "type": "object",
  "properties": {
    "kind": {
      "enum": [
        "azure-outbound-resolver"
      ],
      "title": "Azure Private DNS Resolver Type"
    },
    "dns_config": {
      "$ref": "#/components/schemas/PrivateDnsResolverConfig"
    }
  },
  "example": {
    "kind": "azure-outbound-resolver",
    "dns_config": {
      "global.api.konghq.com": {
        "remote_dns_server_ip_addresses": [
          "10.0.0.2"
        ]
      },
      "us.api.konghq.dev": {
        "remote_dns_server_ip_addresses": [
          "10.0.0.8"
        ]
      }
    }
  },
  "additionalProperties": false,
  "required": [
    "kind",
    "dns_config"
  ]
}