Skip to content

Commit

Permalink
auth/circleci: add jwt signing key env variables for deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
iulianbarbu committed Nov 22, 2023
1 parent eeac485 commit d9b7eec
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,9 @@ jobs:
stripe-secret-key:
description: "Stripe secret key used to connect a client to Stripe backend"
type: string
jwt-signing-private-key:
description: "Auth private key used for JWT signing"
type: string
production:
description: "Push and deploy to production"
type: boolean
Expand Down Expand Up @@ -817,6 +820,7 @@ workflows:
deploys-api-key: DEV_DEPLOYS_API_KEY
logger-postgres-uri: DEV_LOGGER_POSTGRES_URI
stripe-secret-key: DEV_STRIPE_SECRET_KEY
jwt-signing-private-key: DEV_AUTH_JWTSIGNING_PRIVATE_KEY
requires:
- build-and-push-unstable
release:
Expand Down Expand Up @@ -895,6 +899,7 @@ workflows:
deploys-api-key: PROD_DEPLOYS_API_KEY
logger-postgres-uri: PROD_LOGGER_POSTGRES_URI
stripe-secret-key: PROD_STRIPE_SECRET_KEY
jwt-signing-private-key: PROD_AUTH_JWTSIGNING_PRIVATE_KEY
ssh-fingerprint: 6a:c5:33:fe:5b:c9:06:df:99:64:ca:17:0d:32:18:2e
ssh-config-script: production-ssh-config.sh
ssh-host: shuttle.prod.internal
Expand Down

0 comments on commit d9b7eec

Please sign in to comment.