Loading functions.tf +1 −0 Original line number Diff line number Diff line Loading @@ -7,6 +7,7 @@ locals { "nextcloud", "notify", "autoconfig", "mta-sta", ] function_names = [for name in local.functions : "${local.function_name_prefix}-${replace(name, "_", "")}"] } Loading src/mta-sts.py 0 → 100644 +14 −0 Original line number Diff line number Diff line # pylint: disable=invalid-name from utils import check_urls def handler(event, context): # pylint: disable=unused-argument """Lambda event handler.""" checks = [ {"url": "https://mta-sts.shore.co.il/.well-known/mta-sts.txt"}, ] check_urls(checks) if __name__ == "__main__": handler("event", "context") Loading
functions.tf +1 −0 Original line number Diff line number Diff line Loading @@ -7,6 +7,7 @@ locals { "nextcloud", "notify", "autoconfig", "mta-sta", ] function_names = [for name in local.functions : "${local.function_name_prefix}-${replace(name, "_", "")}"] } Loading
src/mta-sts.py 0 → 100644 +14 −0 Original line number Diff line number Diff line # pylint: disable=invalid-name from utils import check_urls def handler(event, context): # pylint: disable=unused-argument """Lambda event handler.""" checks = [ {"url": "https://mta-sts.shore.co.il/.well-known/mta-sts.txt"}, ] check_urls(checks) if __name__ == "__main__": handler("event", "context")