Skip to content

Commit

Permalink
Remove quotes from string values in deploy-eks env
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlod committed Apr 3, 2024
1 parent 76a0442 commit 2e59484
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy-eks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ on:
workflow_dispatch:

env:
ECR_REPOSITORY: ${{ vars.ECR_REPOSITORY || '"authentication-api"' }}
EKS_CLUSTER_NAME: ${{ vars.EKS_CLUSTER_NAME || '"default-cluster"' }}
AWS_REGION: ${{ vars.AWS_REGION || '"us-east-1"' }}
IMAGE_NAME: ${{ vars.IMAGE_NAME || '"authentication-api"' }}
NODE_ENV: ${{ vars.NODE_ENV || '"development"' }}
LOG_STRATEGY: ${{ vars.LOG_STRATEGY || '"CONSOLE"' }}
SECRETS_LIST: ${{ vars.SECRETS_LIST || '"none"' }}
ECR_REPOSITORY: ${{ vars.ECR_REPOSITORY || 'authentication-api' }}
EKS_CLUSTER_NAME: ${{ vars.EKS_CLUSTER_NAME || 'default-cluster' }}
AWS_REGION: ${{ vars.AWS_REGION || 'us-east-1' }}
IMAGE_NAME: ${{ vars.IMAGE_NAME || 'authentication-api' }}
NODE_ENV: ${{ vars.NODE_ENV || 'development' }}
LOG_STRATEGY: ${{ vars.LOG_STRATEGY || 'CONSOLE' }}
SECRETS_LIST: ${{ vars.SECRETS_LIST || 'none' }}

PASSWORD_SALT: ${{ secrets.PASSWORD_SALT || '"10"' }}
JWT_SECRET: ${{ secrets.JWT_SECRET }}
JWT_EXPIRE_MINUTES: ${{ secrets.JWT_EXPIRE_MINUTES || '"60"' }}
JWT_COOKIE_KEY: ${{ secrets.JWT_COOKIE_KEY || '"JWT_COOKIE"' }}
JWT_COOKIE_KEY: ${{ secrets.JWT_COOKIE_KEY || 'JWT_COOKIE' }}
DATABASE_URL: ${{ secrets.DATABASE_URL }}

jobs:
Expand Down

0 comments on commit 2e59484

Please sign in to comment.