SPIFFE and SPIRE
Workloads authenticate with the SPIFFE ID their SPIRE agent attests.
Workloads authenticate with the SPIFFE ID their SPIRE agent attests.
What proves the identity
The token has to come from https://oidc-discovery.acme.com, and its sub claim has to match the workload you named. penv compares that claim byte for byte, with no wildcards.
Every token also has to name your workspace as its audience. Ask for this audience and no other. A token requested for two audiences fails every exchange.
What the console asks for
| Field | Example | Advanced | What it pins |
|---|---|---|---|
| Discovery provider URL | https://oidc-discovery.acme.com | no | The SPIRE OIDC Discovery Provider, published on the internet. |
| SPIFFE ID | spiffe://acme.com/ns/production/sa/api | no | The trust is exactly as narrow as this ID. |
The console also asks which project and environment this identity reaches and which role it gets, with the credential lifetime behind Advanced.
What the trust holds
Built from the example answers above:
| What | Value |
|---|---|
| Issuer | https://oidc-discovery.acme.com |
| Claim compared | sub |
| Subject | spiffe://acme.com/ns/production/sa/api |
| Identity name | spire-acme-com-ns-production-sa-api |
penv names the identity for you, so the form never asks for one.
The snippet the console prints
# Ask for this audience and no other. A token requested for two audiences fails every exchange.
# spire-agent prints a labelled block, so the JWT is the second line
T=$(spire-agent api fetch jwt -audience YOUR_WORKSPACE_ID \
-spiffeID <the SPIFFE ID above> \
-socketPath /run/spire/sockets/agent.sock | sed -n '2p' | tr -d '[:space:]')
C=$(curl -sS "https://penv.cloud/api/v1/auth/oidc" \
-H 'content-type: application/json' \
-d "{\"token\":\"$T\"}" | jq -r .credential)
PENV_TOKEN="$C" penv pullThe snippet finishes with penv pull, which writes a file. penv run is the path the docs teach for a process, and penv pull is for a host that needs a file on disk. Connect your CI has the wrapped step.
Related
- Machine identity
- Connect a Platform in the console
- SPIFFE and SPIRE documentation, where the value people get wrong is always the subject