Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.yml 860B

123456789101112131415161718
  1. # pass
  2. secret_root: '{{ inventory_dir | realpath }}'
  3. secret_name: 'secret'
  4. secret: '{{ secret_root + "/" + secret_name }}'
  5. # must match values in roles/common
  6. db_admin_username: 'postgres'
  7. db_admin_password: "{{ lookup('password', secret + '/' + 'db_admin_password', length=32) }}"
  8. fathom_db_username: 'fathom'
  9. fathom_db_password: "{{ lookup('password', secret + '/' + 'fathom_db_password', length=32) }}"
  10. fathom_db_database: 'fathom'
  11. fathom_admin_username: "{{ admin_email }}"
  12. fathom_admin_password: "{{ lookup('password', secret + '/' + 'fathom_admin_password', length=32) }}"
  13. fathom_internal_port: '9000'
  14. fathom_secret: "{{ lookup('password', secret + '/' + 'fathom_secret', length=32) }}"
  15. fathom_version: '1.2.1'
  16. fathom_release: "https://github.com/usefathom/fathom/releases/download/v{{ fathom_version }}/fathom_{{ fathom_version }}_linux_amd64.tar.gz"