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

Remove Kibana and Elasticsearch.

They've been decomissioned for a while now.
parent aa641bd3
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,6 @@ locals {
"smtp",
"imap",
"auth",
"elasticsearch",
"kibana",
]
function_names = [for name in local.functions : "${local.function_name_prefix}-${replace(name, "_", "")}"]
}
......
"""Check the Elasticsearch service."""
from utils import website_handler
URLS = [
{"url": "http://elasticsearch.shore.co.il/", "codes": [301]},
{"url": "https://elasticsearch.shore.co.il/", "codes": [403]},
]
handler = website_handler(URLS)
if __name__ == "__main__":
handler("event", "context")
"""Check Kibana."""
from utils import website_handler
URLS = [
{"url": "http://kibana.shore.co.il/", "codes": [301]},
{"url": "https://kibana.shore.co.il/", "codes": [302]},
]
handler = website_handler(URLS)
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