Loading functions.tf +0 −2 Original line number Diff line number Diff line Loading @@ -17,8 +17,6 @@ locals { "smtp", "imap", "auth", "elasticsearch", "kibana", ] function_names = [for name in local.functions : "${local.function_name_prefix}-${replace(name, "_", "")}"] } Loading src/elasticsearch.pydeleted 100644 → 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.pydeleted 100644 → 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") Loading
functions.tf +0 −2 Original line number Diff line number Diff line Loading @@ -17,8 +17,6 @@ locals { "smtp", "imap", "auth", "elasticsearch", "kibana", ] function_names = [for name in local.functions : "${local.function_name_prefix}-${replace(name, "_", "")}"] } Loading
src/elasticsearch.pydeleted 100644 → 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.pydeleted 100644 → 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")