Docs
Reference

Bitrise

Builds authenticate as the app and workflow they ran in.

Builds authenticate as the app and workflow they ran in.

What proves the identity

The token has to come from https://token.builds.bitrise.io, 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

FieldExampleAdvancedWhat it pins
App slug1234abcd5678efghnoThe slug in your build URL.
WorkflowdeploynoOnly this workflow authenticates.

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:

WhatValue
Issuerhttps://token.builds.bitrise.io
Claim comparedsub
Subjectapp:1234abcd5678efgh:workflow:deploy
Identity namebitrise-abcd5678efgh-deploy

penv names the identity for you, so the form never asks for one.

The snippet the console prints

- get-identity-token@0:
    inputs:
    - audience: YOUR_WORKSPACE_ID
- script@1:
    inputs:
    - content: |
        # the step above exports this workflow-wide; there is no narrower path
        T="$BITRISE_IDENTITY_TOKEN"
        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 pull

The 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.