Wait-for-secrets GitHub Action waits for the developer to enter secrets during a workflow run. Developers can enter secrets using a web browser and use them in the workflow.
- MFA To enable using multi-factor authentication (MFA)/ one-time password (OTPs) for a release workflow, e.g., use OTP to publish to the npm registry.
- Separation of duties Even if someone has write access to the repository, they do not get access to the deployment secrets.
- More control You have more control over when secrets get used in your workflows. With
wait-for-secrets,
there is manual human interaction needed for publishing. - Less management overhead You can use your existing account for deployment. This removes the need to manage a separate set of deployment credentials.
- Add the
wait-for-secrets
GitHub Action to your workflow and specify the secrets you need. - The Action will print a URL in the build log every 10 seconds and wait for you to enter the secrets
- Click on the URL and enter the secrets that the workflow needs.
- The Action will get the secrets you entered in the browser and continue execution.
- Use the retrieved secrets in future steps.
Use this workflow to see a quick demo of wait-for-secrets
with a dummy secret.
name: Wait-for-secrets Demo
on: workflow_dispatch
jobs:
build:
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: step-security/wait-for-secrets@v1
id: get-otp
with:
secrets: |
DUMMY_SECRET:
name: 'Dummy secret'
description: 'Dummy secret to demo wait-for-secrets'
- run: |
echo ${{ steps.get-otp.outputs.DUMMY_SECRET }}
Use this workflow to publish to the npm registry using a one-time password.
Prerequisites:
- Setup two-factor authentication for your account.
- Require two-factor authentication to publish the package. This can be configured in the package settings.
- Create a
Publish
access token and set it as a GitHub secretNODE_AUTH_TOKEN
name: Publish Package to npmjs
on: workflow_dispatch
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
- uses: step-security/wait-for-secrets@v1
id: wait-for-secrets
with:
secrets: |
OTP:
name: 'OTP to publish package'
description: 'OTP from authenticator app'
- run: npm ci
- run: npm publish --otp ${{ steps.wait-for-secrets.outputs.OTP }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
When you run this workflow, you will see a link in the build log to enter the OTP.
- Click on the link and enter the OTP.
- The workflow will take the OTP and pass it to the
npm publish
step. - OTP will be used to publish the package.
You can get a notification on Slack when the secret needs to be entered. Set the slack-webhook-url
as shown below.
Example of how to provide AWS temporary security credentials in a workflow.
name: Deploy to AWS
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
jobs:
publish:
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: step-security/wait-for-secrets@v1
id: wait-for-secrets
with:
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }}
secrets: |
AWS_ACCESS_KEY_ID:
name: 'AWS access key id'
description: 'Access key id for prod'
AWS_SECRET_ACCESS_KEY:
name: 'AWS secret access key'
description: 'Secret access key for prod'
AWS_SESSION_TOKEN:
name: 'AWS session token'
description: 'Session token for prod'
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ steps.wait-for-secrets.outputs.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ steps.wait-for-secrets.outputs.AWS_SECRET_ACCESS_KEY }}
aws-session-token: ${{ steps.wait-for-secrets.outputs.AWS_SESSION_TOKEN }}
aws-region: us-west-2
During the workflow run, you can generate temporary AWS credentials for your account and enter them using the browser.
Here are a couple of workflows that use wait-for-secrets
- Publish to NPM: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/.github/workflows/npm-publish.yml
- Deploy to AWS: https://github.com/step-security/secure-workflows/blob/main/.github/workflows/release.yml
- GitHub release: https://github.com/step-security/wait-for-secrets/blob/main/.github/workflows/release.yml
-
Why does
wait-for-secrets
needid-token: write
permission?It needs the
id-token: write
permission to authenticate to the StepSecurity API. This is to ensure only the authorized workflow can retrieve the secrets. -
How does
wait-for-secrets
work?This is how
wait-for-secrets
works:- When the
wait-for-secrets
Action is called, it gets an OpenID Connect (OIDC) token using theid-token: write
permission. - The token is sent to the StepSecurity API along with the needed list of secrets.
- StepSecurity API authenticates the caller using the token and stores the list of secrets in a data store.
- When a user clicks on the link in the build log, the list of secrets is shown to the user.
- The user enters the secrets in the browser.
- The secrets are sent to the StepSecurity API, where they are stored in the datastore.
wait-for-secrets
Action polls every 10 seconds to check if the secrets are available.- If available, the StepSecurity API returns the secret values to the Action.
wait-for-secrets
Action makes a call to the StepSecurity API to clear the secrets in the datastorewait-for-secrets
Action makes the secrets available for future steps.
- When the
-
Where is the code for the StepSecurity API?
Wait-for-secrets
GitHub Action and the backend API it uses are open-source. The backend API is in the https://github.com/step-security/secure-workflows repository.