Skip to content
Snippets Groups Projects
Commit e797bfc8 authored by nimrod's avatar nimrod
Browse files

Add check for mta-sts.shore.co.il.

parent ec24d200
Branches
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ locals {
"nextcloud",
"notify",
"autoconfig",
"mta-sta",
]
function_names = [for name in local.functions : "${local.function_name_prefix}-${replace(name, "_", "")}"]
}
......
# 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")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment