diff --git a/functions.tf b/functions.tf index 819e80169cd821d25fe26ce339ed8806260cf7c5..5c4e22a99e7f59e816e31f19cd4e10a302e0e912 100644 --- a/functions.tf +++ b/functions.tf @@ -16,7 +16,6 @@ locals { "ssh", "smtp", "imap", - "auth", ] function_names = [for name in local.functions : "${local.function_name_prefix}-${replace(name, "_", "")}"] } diff --git a/src/auth.py b/src/auth.py deleted file mode 100644 index 15287e439fbe10403fe5758b1bff08fa402c6963..0000000000000000000000000000000000000000 --- a/src/auth.py +++ /dev/null @@ -1,14 +0,0 @@ -"""Check the auth.shore.co.il web service.""" - -from utils import website_handler - -URLS = [ - {"url": "http://auth.shore.co.il/", "codes": [301]}, - {"url": "https://auth.shore.co.il/", "codes": [404]}, -] - -handler = website_handler(URLS) - - -if __name__ == "__main__": - handler("event", "context")