diff --git a/content/en/docs/tasks/traffic-management/ingress/secure-ingress/index.md b/content/en/docs/tasks/traffic-management/ingress/secure-ingress/index.md index 0876568564..3c41680f44 100644 --- a/content/en/docs/tasks/traffic-management/ingress/secure-ingress/index.md +++ b/content/en/docs/tasks/traffic-management/ingress/secure-ingress/index.md @@ -624,6 +624,7 @@ EOF Istio supports reading a few different Secret formats, to support integration with various tools such as [cert-manager](/docs/ops/integrations/certmanager/): * A TLS Secret with keys `tls.key` and `tls.crt`, as described above. For mutual TLS, a `ca.crt` key can be used. +* A TLS Secret with keys `tls.key` and `tls.crt`, as described above. For mutual TLS, a separate generic Secret named `-cacert`, with a `cacert` key. For example, `httpbin-credential` has `tls.key` and `tls.crt`, and `httpbin-credential-cacert` has `cacert`. * A generic Secret with keys `key` and `cert`. For mutual TLS, a `cacert` key can be used. * A generic Secret with keys `key` and `cert`. For mutual TLS, a separate generic Secret named `-cacert`, with a `cacert` key. For example, `httpbin-credential` has `key` and `cert`, and `httpbin-credential-cacert` has `cacert`. * The `cacert` key value can be a CA bundle consisting of concatenated individual CA certificates.