Commit 178014fc authored by nimrod's avatar nimrod
Browse files

Remove Kibana and Elasticsearch.

They've been decomissioned for a while now.
parent aa641bd3
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -17,8 +17,6 @@ locals {
    "smtp",
    "imap",
    "auth",
    "elasticsearch",
    "kibana",
  ]
  function_names = [for name in local.functions : "${local.function_name_prefix}-${replace(name, "_", "")}"]
}

src/elasticsearch.py

deleted100644 → 0
+0 −14
Original line number Diff line number Diff line
"""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")

src/kibana.py

deleted100644 → 0
+0 −14
Original line number Diff line number Diff line
"""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")