traefik/docs/content/https/spiffe.md
Simon Delicata 3eeea2bb2b
Add TCP Servers Transports support
Co-authored-by: Romain <rtribotte@users.noreply.github.com>
2022-12-09 09:58:05 +01:00

2 KiB

title description
Traefik SPIFFE Documentation Learn how to configure Traefik to use SPIFFE. Read the technical documentation.

SPIFFE

Secure the backend connection with SPIFFE. {: .subtitle }

SPIFFE (Secure Production Identity Framework For Everyone), provides a secure identity in the form of a specially crafted X.509 certificate, to every workload in an environment.

Traefik is able to connect to the Workload API to obtain an x509-SVID used to secure the connection with SPIFFE enabled backends.

Configuration

General

Enabling SPIFFE is part of the static configuration. It can be defined by using a file (YAML or TOML) or CLI arguments.

Workload API

The workloadAPIAddr configuration defines the address of the SPIFFE Workload API.

!!! info "Enabling SPIFFE in ServersTransports"

Enabling SPIFFE does not imply that backend connections are going to use it automatically.
Each [ServersTransport](../routing/services/index.md#serverstransport_1) or [TCPServersTransport](../routing/services/index.md#serverstransport_2),
that is meant to be secured with SPIFFE,
must explicitly enable it (see [SPIFFE with ServersTransport](../routing/services/index.md#spiffe) or [SPIFFE with TCPServersTransport](../routing/services/index.md#spiffe_1)).

!!! warning "SPIFFE can cause Traefik to stall" When using SPIFFE, Traefik will wait for the first SVID to be delivered before starting. If Traefik is hanging when waiting on SPIFFE SVID delivery, please double check that it is correctly registered as workload in your SPIFFE infrastructure.

## Static configuration
spiffe:
    workloadAPIAddr: localhost
## Static configuration
[spiffe]
    workloadAPIAddr: localhost
## Static configuration
--spiffe.workloadAPIAddr=localhost