Fly.io
Machines authenticate as the app they belong to.
Machines authenticate as the app they belong to.
What proves the identity
The token has to come from https://oidc.fly.io/acme, and its app_name claim has to match the workload you named. penv compares that claim byte for byte, with no wildcards.
app_name is matched rather than sub, because this platform puts something per run in sub.
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 |
|---|---|---|---|
| Organization slug | acme | no | |
| App name | acme-api | no | Every machine of this app matches. |
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.fly.io/acme |
| Claim compared | app_name |
| Subject | acme-api |
| Identity name | fly-acme-api |
penv names the identity for you, so the form never asks for one.
The snippet the console prints
T=$(curl -sS --unix-socket /.fly/api \
-X POST http://localhost/v1/tokens/oidc \
--data '{"aud":"YOUR_WORKSPACE_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
- Fly.io documentation, where the value people get wrong is always the subject