Common TLS configuration

auth.TlsParameters

[auth.TlsParameters proto]

{
  "tls_minimum_protocol_version": "...",
  "tls_maximum_protocol_version": "...",
  "cipher_suites": [],
  "ecdh_curves": []
}
tls_minimum_protocol_version
(auth.TlsParameters.TlsProtocol) Minimum TLS protocol version.
tls_maximum_protocol_version
(auth.TlsParameters.TlsProtocol) Maximum TLS protocol version.
cipher_suites

(string) If specified, the TLS listener will only support the specified cipher list. If not specified, the default list:

[ECDHE-ECDSA-AES128-GCM-SHA256|ECDHE-ECDSA-CHACHA20-POLY1305]
[ECDHE-RSA-AES128-GCM-SHA256|ECDHE-RSA-CHACHA20-POLY1305]
ECDHE-ECDSA-AES128-SHA256
ECDHE-RSA-AES128-SHA256
ECDHE-ECDSA-AES128-SHA
ECDHE-RSA-AES128-SHA
AES128-GCM-SHA256
AES128-SHA256
AES128-SHA
ECDHE-ECDSA-AES256-GCM-SHA384
ECDHE-RSA-AES256-GCM-SHA384
ECDHE-ECDSA-AES256-SHA384
ECDHE-RSA-AES256-SHA384
ECDHE-ECDSA-AES256-SHA
ECDHE-RSA-AES256-SHA
AES256-GCM-SHA384
AES256-SHA256
AES256-SHA

will be used.

ecdh_curves
(string) If specified, the TLS connection will only support the specified ECDH curves. If not specified, the default curves (X25519, P-256) will be used.

Enum auth.TlsParameters.TlsProtocol

[auth.TlsParameters.TlsProtocol proto]

TLS_AUTO
(DEFAULT) ⁣Envoy will choose the optimal TLS version.
TLSv1_0
⁣TLS 1.0
TLSv1_1
⁣TLS 1.1
TLSv1_2
⁣TLS 1.2
TLSv1_3
⁣TLS 1.3

auth.TlsCertificate

[auth.TlsCertificate proto]

{
  "certificate_chain": "{...}",
  "private_key": "{...}"
}
certificate_chain
(core.DataSource) The TLS certificate chain.
private_key
(core.DataSource) The TLS private key.

auth.TlsSessionTicketKeys

[auth.TlsSessionTicketKeys proto]

{
  "keys": []
}
keys

(core.DataSource, REQUIRED) Keys for encrypting and decrypting TLS session tickets. The first key in the array contains the key to encrypt all new sessions created by this context. All keys are candidates for decrypting received tickets. This allows for easy rotation of keys by, for example, putting the new key first, and the previous key second.

If session_ticket_keys is not specified, the TLS library will still support resuming sessions via tickets, but it will use an internally-generated and managed key, so sessions cannot be resumed across hot restarts or on different hosts.

Each key must contain exactly 80 bytes of cryptographically-secure random data. For example, the output of openssl rand 80.

Attention

Using this feature has serious security considerations and risks. Improper handling of keys may result in loss of secrecy in connections, even if ciphers supporting perfect forward secrecy are used. See https://www.imperialviolet.org/2013/06/27/botchingpfs.html for some discussion. To minimize the risk, you must:

  • Keep the session ticket keys at least as secure as your TLS certificate private keys
  • Rotate session ticket keys at least daily, and preferably hourly
  • Always generate keys using a cryptographically-secure random data source

auth.CertificateValidationContext

[auth.CertificateValidationContext proto]

{
  "trusted_ca": "{...}",
  "verify_certificate_hash": [],
  "verify_subject_alt_name": [],
  "crl": "{...}"
}
trusted_ca

(core.DataSource) TLS certificate data containing certificate authority certificates to use in verifying a presented peer certificate (e.g. server certificate for clusters or client certificate for listeners). If not specified and a peer certificate is presented it will not be verified. By default, a client certificate is optional, unless one of the additional options (require_client_certificate, verify_certificate_hash, or verify_subject_alt_name) is also specified.

See the TLS overview for a list of common system CA locations.

verify_certificate_hash
(string) If specified, Envoy will verify (pin) the hex-encoded SHA-256 hash of the presented certificate.
verify_subject_alt_name
(string) An optional list of subject alternative names. If specified, Envoy will verify that the certificate’s subject alternative name matches one of the specified values.
crl
(core.DataSource) An optional certificate revocation list (in PEM format). If specified, Envoy will verify that the presented peer certificate has not been revoked by this CRL. If this DataSource contains multiple CRLs, all of them will be used.

auth.CommonTlsContext

[auth.CommonTlsContext proto]

TLS context shared by both client and server TLS contexts.

{
  "tls_params": "{...}",
  "tls_certificates": [],
  "validation_context": "{...}",
  "alpn_protocols": []
}
tls_params
(auth.TlsParameters) TLS protocol versions, cipher suites etc.
tls_certificates

(auth.TlsCertificate) Multiple TLS certificates can be associated with the same context. E.g. to allow both RSA and ECDSA certificates, two TLS certificates can be configured.

Attention

Although this is a list, currently only a single certificate is supported. This will be relaxed in the future.

validation_context
(auth.CertificateValidationContext) How to validate peer certificates.
alpn_protocols

(string) Supplies the list of ALPN protocols that the listener should expose. In practice this is likely to be set to one of two values (see the codec_type parameter in the HTTP connection manager for more information):

  • “h2,http/1.1” If the listener is going to support both HTTP/2 and HTTP/1.1.
  • “http/1.1” If the listener is only going to support HTTP/1.1.

There is no default for this parameter. If empty, Envoy will not expose ALPN.

auth.UpstreamTlsContext

[auth.UpstreamTlsContext proto]

{
  "common_tls_context": "{...}",
  "sni": "..."
}
common_tls_context
(auth.CommonTlsContext) Common TLS context settings.
sni
(string) SNI string to use when creating TLS backend connections.

auth.DownstreamTlsContext

[auth.DownstreamTlsContext proto]

{
  "common_tls_context": "{...}",
  "require_client_certificate": "{...}",
  "session_ticket_keys": "{...}"
}
common_tls_context
(auth.CommonTlsContext) Common TLS context settings.
require_client_certificate
(BoolValue) If specified, Envoy will reject connections without a valid client certificate.
session_ticket_keys

(auth.TlsSessionTicketKeys) TLS session ticket key settings.

Only one of session_ticket_keys may be set.