diff options
author | David Timber <dxdt@dev.snart.me> | 2022-05-20 12:16:44 +0800 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2022-05-20 12:29:26 +0800 |
commit | 60a55ffab24b088b49200b178a2e7d6002abe70f (patch) | |
tree | 15013a5979c219bedf6d0ef41c328859457da68b /README.md | |
parent | c660b8c97fdb64f22cd893e1acdb6f31e816f28f (diff) |
Refactor, add AWS SNS MUA ...
- Refactor BootReport
- Modularise MUA impls
- Refactor setup_conf()
- Add missing info from __str__() funcs
- Doc AWS SNS MUA
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -234,6 +234,26 @@ or a rc.d script on SysVinit based systems. } ``` +### AWS SNS MUA +The boot report can be sent to a AWS SNS topic. The `aws-sns` MUA comes with +the `aws` module. + +```jsonc +{ + "modules": [ "aws" ], + "boot-report": { + "mua": "aws-sns", + "mua-param": { + // "profile": "default", + // If the profile does not have the default region. + "region": "us-east-1" + }, + // Target ARNs. Any ARN recognised by the SNS can be used. + "mail-to": [ "arn:aws:sns:us-east-1:NNNNNNNNNNNN:topic-test" ] + } +} +``` + ## DNSSEC Check If your domain is configured with DNSSEC[^2], PALHM can be used to check the reachability of your RRs. Your domain will become unavailable when the keys are |