Client certificate validation

Sometimes, for additional security or authentication purposes, you will want the server to validate who the client is before establishing an encrypted connection.

To support this, Emissary can be configured to use a provided CA certificate to validate certificates sent from your clients. This allows for client-side mTLS where both Emissary and the client provide and validate each other’s certificates.

Prerequisites

Configuration

  1. Create a certificate and key.

    This can be done with a single command with openssl:

    openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
    

    Enter a passcode for PEM files and fill in the certificate information. Since this certificate will only be shared between a client and Emissary, the Common Name must be set to something. Everything else can be left blank.

    Note: If using MacOS, you must add the certificate and key as a PKCS encoded file to your Keychain. To do this:

    1. Encode cert.pem and key.pem created above in PKCS format

      openssl pkcs12 -inkey key.pem -in cert.pem -export -out certificate.p12
      
    2. Open “Keychain Access” on your system and select “File”->“Import Items…”

    3. Navigate to your working directory and select the certificate.p12 file we just created above.

  2. Create a secret to hold the client CA certificate.

    kubectl create secret generic client-cacert --from-file=tls.crt=cert.pem
    
  3. Configure Emissary to use this certificate for client certificate validation.

    First create a Host to manage your domain:

    apiVersion: getambassador.io/v3alpha1
    kind: Host
    metadata:
      name: example-host
    spec:
      hostname: host.example.com
      acmeProvider:
        email: julian@example.com
    

    Then create a TLSContext to configure advanced TLS options like client certificate validation:

    ---
    apiVersion: getambassador.io/v3alpha1
    kind: TLSContext
    metadata:
      name: example-host-context
    spec:
      hosts:
      - host.example.com
      secret: host.example.com
      ca_secret: client-cacert
      cert_required: false      # Optional: Configures Emissary to reject the request if the client does not provide a certificate. Default: false
    

    Note: Client certificate validation requires Emissary be configured to terminate TLS

    Emissary is now be configured to validate certificates that the client provides.

  4. Test that Emissary is validating the client certificates with curl

    Linux:

    curl -v --cert cert.pem --key key.pem https://host.example.com/
    

    MacOS:

    curl -v --cert certificate.p12:[password] https://host.example.com/
    

    Looking through the verbose output, you can see we are sending a client certificate and Emissary is validating it.

    If you need further proof, simply create a new set of certificates and try sending the curl with those. You will see Emissary deny the request.