Skip to content

Commit

Permalink
Merge pull request #23 from trento-project/fix-basekey-rendering
Browse files Browse the repository at this point in the history
Fix default secret key rendering
  • Loading branch information
arbulu89 authored Feb 6, 2024
2 parents 15b6dc6 + 6be8d4e commit 4da8c2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions roles/containers/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ wanda_postgres_db: wandadb
rabbitmq_username: trento
rabbitmq_host: host.docker.internal
rabbitmq_vhost: "trento"
secret_key_base: "lookup('community.general.random_string', base64=True, length=64)"
access_token_secret: "lookup('community.general.random_string', base64=True, length=64)"
refresh_token_secret: "lookup('community.general.random_string', base64=True, length=64)"
secret_key_base: "{{ lookup('community.general.random_string', base64=True, length=64) }}"
access_token_secret: "{{ lookup('community.general.random_string', base64=True, length=64) }}"
refresh_token_secret: "{{ lookup('community.general.random_string', base64=True, length=64) }}"
web_admin_username: admin
enable_alerting: "false"
enable_api_key: "true"
Expand Down

0 comments on commit 4da8c2a

Please # to comment.