Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added mollie secrets for mongoose #492

Merged
merged 6 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ansible/group_vars/production/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ secret_backup_aws:

# To change, regenerate the token in Mollie's web interface.
secret_mollie_token: "{{ vault_secret_mollie_token }}"
secret_mollie_token_mongoose: "{{ vault_secret_mollie_token_mongoose }}"

secret_pretix:
# To change, generate a new password and set it in the Mailgun interface:
Expand Down
1 change: 1 addition & 0 deletions ansible/group_vars/staging/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ secret_backup_aws:

# To change, regenerate the token in Mollie's web interface.
secret_mollie_token: "{{ vault_secret_mollie_token }}"
SilasPeters marked this conversation as resolved.
Show resolved Hide resolved
secret_mollie_token_mongoose: "{{ vault_secret_mollie_token_mongoose }}"

secret_pretix:
# To change, generate a new password and set it in the Mailgun interface:
Expand Down
5 changes: 5 additions & 0 deletions ansible/roles/mongoose/templates/.env.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ DB_PORT=
# Token
API_TOKEN={{ vault_secret_mongoose.api_key }}

# MOLLIE credentials for the iDEAL integration.
MOLLIE_DOMAIN=https://api.mollie.nl
SilasPeters marked this conversation as resolved.
Show resolved Hide resolved
MOLLIE_API_TOKEN={{ secret_mollie_token_mongoose }}
MOLLIE_VERSION=v1
SilasPeters marked this conversation as resolved.
Show resolved Hide resolved

# Settings for django
DJANGO_KEY={{ vault_secret_mongoose.django_key }}
TIMEZONE=Europe/Amsterdam
Expand Down
Loading