diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-08-18 12:38:15 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-08-18 12:38:15 -0700 |
commit | a6cc1ed3617ce0e71e5f73543a0ae4dcd38791a8 (patch) | |
tree | dd28429a223bfc9264593b3f26eca28fca507fb9 /group_vars/mon.yml | |
parent | 91027c036cf7c15db76fe7b8317c754ab13d63d9 (diff) | |
download | infra-a6cc1ed3617ce0e71e5f73543a0ae4dcd38791a8.tar.gz infra-a6cc1ed3617ce0e71e5f73543a0ae4dcd38791a8.zip |
Deploy monitoring stack
Diffstat (limited to 'group_vars/mon.yml')
-rw-r--r-- | group_vars/mon.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/group_vars/mon.yml b/group_vars/mon.yml index 1d0944e..2262bf3 100644 --- a/group_vars/mon.yml +++ b/group_vars/mon.yml @@ -3,4 +3,38 @@ mon_domain: mon.liz.coffee mon_base: "{{ swarm_base }}/mon" +public_resolver: "1.1.1.1" + prometheus_domain: prometheus.liz.coffee + +email_accounts: + - username: "{{ mmtc1_username }}" + email: "{{ mmtc1_username }}@mistymountainstherapy.com" + password: "{{ mmtc1_password }}" + host: "mail.mistymountainstherapy.com" + - username: "{{ mmtc2_username }}" + email: "{{ mmtc2_username }}@mistymountainstherapy.com" + password: "{{ mmtc2_password }}" + host: "mail.mistymountainstherapy.com" + - username: "{{ lizc1_username }}" + email: "{{ lizc1_username }}@{{ domain }}" + password: "{{ lizc1_password }}" + host: "{{ mail_domain }}" + - username: "{{ lizc2_username }}" + email: "{{ lizc2_username }}@{{ domain }}" + password: "{{ lizc2_password }}" + host: "{{ mail_domain }}" + +email_tests: + - name: "mmt_to_mmt" + from: "{{ mmtc1_username }}@mistymountainstherapy.com" + to: "{{ mmtc2_username }}@mistymountainstherapy.com" + - name: "mmt_to_liz" + from: "{{ mmtc1_username }}@mistymountainstherapy.com" + to: "{{ lizc2_username }}@{{ domain }}" + - name: "liz_to_mmt" + from: "{{ lizc1_username }}@{{ domain }}" + to: "{{ mmtc2_username }}@mistymountainstherapy.com" + - name: "liz_to_liz" + from: "{{ lizc2_username }}@{{ domain }}" + to: "{{ lizc1_username }}@{{ domain }}" |