Zone ciphers allowed for TLS termination

An allowlist of ciphers for TLS termination. These ciphers must be in the BoringSSL format.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-zones-ciphers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/zones_ciphers",
  "title": "Zone ciphers allowed for TLS termination",
  "allOf": [
    {
      "$ref": "#/components/schemas/zones_base"
    },
    {
      "properties": {
        "id": {
          "description": "ID of the zone setting.",
          "enum": [
            "ciphers"
          ],
          "example": "ciphers"
        },
        "value": {
          "$ref": "#/components/schemas/zones_ciphers_value"
        }
      }
    }
  ],
  "default": [],
  "description": "An allowlist of ciphers for TLS termination. These ciphers must be in the BoringSSL format."
}