source: main/waeup-ansible/host_vars/h8.waeup.org @ 17872

Last change on this file since 17872 was 15967, checked in by uli, 5 years ago

Add host vars for h9 and h10.

These include mainly the backup parameters currently active on both hosts.

File size: 1.2 KB
Line 
1# h8.waeup.org host-specific settings
2# Generate vault values like this:
3#    ansible-vault encrypt_string password123 --ask-vault-pass
4---
5borgbackup_encryption_mode: "keyfile"
6borgbackup_servers:
7    - fqdn: "u121417.your-storagebox.de"
8      user: "u121417"
9      password: !vault |
10          $ANSIBLE_VAULT;1.1;AES256
11          38636664333563346663323239393263643461336235633938346530363131336236353639373963
12          3533636133626430323936386330646365353837303866320a303836363437353931356532653565
13          63653961643262393961653963663037353236613461646433323134613333303832393837663165
14          3932323163623535350a626263346135363136623330366137336230323037653664623632353335
15          66323136346435636163323331643062613431323962353733343066346166313139
16      type: "hetzner"
17      home: ""
18      pool: "borg"
19      options: ""
20      port: 23
21      quota: "450G"
22      pruning: "--keep-daily 3 --keep-monthly 1"
23borgbackup_include:
24    - "/etc"
25    - "/root"
26    - "/home/vhosts"
27    - "/home/dhosts"
28    - "/var/www"
29    - "/var/lib/docker"
30    - "/data"
31borgbackup_exclude: []
32borgbackup_cron_day: "*"
33borgbackup_cron_hour: "{{ 5|random(seed=inventory_hostname) }}"
34borgbackup_cron_minute: "{{ 59|random(seed=inventory_hostname) }}"
Note: See TracBrowser for help on using the repository browser.