No Description
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 1.2KB

1234567891011121314151617181920212223242526272829303132
  1. # pass
  2. secret_root: '{{ inventory_dir | realpath }}'
  3. secret_name: 'secret'
  4. secret: '{{ secret_root + "/" + secret_name }}'
  5. fathom_admin_username: "{{ admin_email }}"
  6. fathom_admin_password: "{{ lookup('password', secret + '/' + 'fathom_admin_password length=32') }}"
  7. fathom_version: '1.2.1'
  8. fathom_release: "https://github.com/usefathom/fathom/releases/download/v{{ fathom_version }}/fathom_{{ fathom_version }}_linux_amd64.tar.gz"
  9. fathom_db_username: 'fathom'
  10. fathom_db_password: "{{ lookup('password', secret + '/' + 'fathom_db_password length=32') }}"
  11. fathom_db_database: 'fathom'
  12. fathom_subdomain: 'stats'
  13. fathom_internal_port: '9000'
  14. fathom_secret: "{{ lookup('password', secret + '/' + 'fathom_secret length=32') }}"
  15. commento_version: '1.6.2'
  16. commento_release: "https://commento-release.s3.amazonaws.com/commento-linux-amd64-v{{ commento_version }}.tar.gz"
  17. commento_subdomain: 'comments'
  18. commento_internal_port: '9100'
  19. commento_db_username: 'commentouser'
  20. commento_db_password: "{{ lookup('password', secret + '/' + 'commento_db_password length=32') }}"
  21. commento_db_database: 'commento'
  22. # must match values in roles/common
  23. db_admin_username: 'postgres'
  24. db_admin_password: "{{ lookup('password', secret + '/' + 'db_admin_password length=32') }}"