-
Notifications
You must be signed in to change notification settings - Fork 1
/
certs.yaml
43 lines (39 loc) · 1.06 KB
/
certs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
# `defaults` contains the default settings.
defaults:
# The default TLS port to connect to.
port: 443
# By default, notification is sent when its TLS cert is expiring in
# 35 days.
notify_when_expiring_in: 35
notifiers:
ses:
sender: [email protected]
recipient: [email protected]
aws_region: us-east-1
irc:
server: irc.example.com
port: 6697
# Don't forget the hash tag.
channel: "#check_certs"
nick: check_certs
use_tls: True
sites:
# For site1, notification is sent when its TLS cert is expiring in
# 60 days.
site1.domain.com:
notify_when_expiring_in: 60
# site2 uses the default settings.
site2.domain.com:
# site3 has different AWS SES notifier settings than the defaults.
site3.domain.com:
notifiers:
ses:
sender: [email protected]
recipient: [email protected]
# site4 uses the default settings except talking to the irc server on
# a different port.
site4.domain.com:
notifiers:
irc:
port: 6665