Skip to content

Commit

Permalink
Merge pull request #24 from Kwaizer/fix_git_vars
Browse files Browse the repository at this point in the history
Added default values for github integration setting
  • Loading branch information
Korulag authored Jun 10, 2024
2 parents 3c3247e + cff7fd0 commit cd998ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions roles/dev_deploy/templates/vars.env.j2
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ POSTGRES_DB="{{ postgres_db }}"
POSTGRES_USER="{{ postgres_user }}"
GITHUB_CLIENT="{{ github_client }}"
GITHUB_CLIENT_SECRET="{{ github_client_secret }}"
GITHUB_INTEGRATION_ENABLED="{{ github_integration_enabled }}"
GITHUB_APP_ID="{{ github_app_id }}"
PATH_TO_GITHUB_APP_PEM="{{ path_to_github_app_pem }}"
GITHUB_INSTALLATION_ID="{{ github_installation_id }}"
GITHUB_INTEGRATION_ENABLED="{{ github_integration_enabled | default(False) }}"
GITHUB_APP_ID="{{ github_app_id | default(None) }}"
PATH_TO_GITHUB_APP_PEM="{{ path_to_github_app_pem | default(None) }}"
GITHUB_INSTALLATION_ID="{{ github_installation_id | default(None) }}"
ALTS_HOST="http://{{ container_name_prefix }}_alts-scheduler_1:8000"
ALTS_TOKEN="{{ alts_jwt }}"
DATABASE_URL="{{ albs_db_url }}"
Expand Down

0 comments on commit cd998ab

Please sign in to comment.