Buildkite
Steps authenticate as the pipeline they ran in.
Steps authenticate as the pipeline they ran in.
What proves the identity
The token has to come from https://agent.buildkite.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 |
|---|---|---|---|
| Pipeline ID | 01920a1b-2c3d-4e5f-6a7b-8c9d0e1f2a3b | no | Pipeline Settings → General. Use the id, because a renamed slug would break the trust. |
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://agent.buildkite.com |
| Claim compared | sub |
| Subject | 01920a1b-2c3d-4e5f-6a7b-8c9d0e1f2a3b |
| Identity name | buildkite-8c9d0e1f2a3b |
penv names the identity for you, so the form never asks for one.
The snippet the console prints
steps:
- command: |
T=$(buildkite-agent oidc request-token \
--audience "YOUR_WORKSPACE_ID" \
--subject-claim pipeline_id)
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
- Buildkite documentation, where the value people get wrong is always the subject