This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
alerta.autonomic.zone/ansible/templates/alerta.conf

21 lines
499 B
Plaintext
Raw Normal View History

2020-04-09 17:06:09 +00:00
[DEFAULT]
2020-04-10 07:46:08 +00:00
debug = True
2020-04-10 07:22:24 +00:00
endpoint = http://localhost:8080/api
2020-04-10 07:46:08 +00:00
key = {{ alerta_cli_api_key }}
2020-04-09 17:06:09 +00:00
output = psql
2020-04-10 07:22:24 +00:00
sslverify = False
2020-04-09 17:06:09 +00:00
timezone = Europe/London
[alerta-mailer]
2020-04-10 07:54:42 +00:00
amqp_url = {{ db_type }}://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}/kombu
debug = True
2020-04-09 18:27:36 +00:00
email_type = text
2020-04-10 07:22:24 +00:00
endpoint = http://localhost:8080
2020-04-09 17:20:11 +00:00
key = {{ alerta_mailer_api_key }}
mail_from = {{ mail_from }}
2020-04-09 18:27:36 +00:00
mail_to = {{ mail_to }}
skip_mta = False
2020-04-09 17:20:11 +00:00
smtp_password = {{ smtp_passwd }}
smtp_starttls = True
2020-04-09 18:27:36 +00:00
smtp_username = {{ smtp_username }}