From 5c89bb18862f436964d706c5cefc8146fa6dc0a6 Mon Sep 17 00:00:00 2001 From: Matt Holmes Date: Thu, 26 Jan 2023 08:50:33 +0000 Subject: [PATCH] refactor(ecs): Remove KONG_SSL_CERT and KONG_SSL_CERT_KEY from Portal and Control Plane Task Definitions as these aren't needed (#99) Signed-off-by: Matt Holmes --- templates/ecs/kong_control_plane.tpl | 8 -------- templates/ecs/kong_portal.tpl | 8 -------- 2 files changed, 16 deletions(-) diff --git a/templates/ecs/kong_control_plane.tpl b/templates/ecs/kong_control_plane.tpl index 13690c4..0571b25 100644 --- a/templates/ecs/kong_control_plane.tpl +++ b/templates/ecs/kong_control_plane.tpl @@ -71,14 +71,6 @@ "name": "KONG_CLUSTER_CERT_KEY", "value": "/usr/local/kong/kong_clustering/cluster.key" }, - { - "name": "KONG_SSL_CERT", - "value": "/usr/local/kong/ssl/kong.crt" - }, - { - "name": "KONG_SSL_CERT_KEY", - "value": "/usr/local/kong/ssl/kong.key" - }, { "name": "KONG_ADMIN_LISTEN", "value": "0.0.0.0:${admin_api_port} ssl" diff --git a/templates/ecs/kong_portal.tpl b/templates/ecs/kong_portal.tpl index a26d630..6a98afb 100644 --- a/templates/ecs/kong_portal.tpl +++ b/templates/ecs/kong_portal.tpl @@ -65,14 +65,6 @@ "name": "KONG_CLUSTER_CERT_KEY", "value": "/usr/local/kong/kong_clustering/cluster.key" }, - { - "name": "KONG_SSL_CERT", - "value": "/usr/local/kong/ssl/kong.crt" - }, - { - "name": "KONG_SSL_CERT_KEY", - "value": "/usr/local/kong/ssl/kong.key" - }, { "name": "KONG_PORTAL_GUI_LISTEN", "value": "0.0.0.0:${portal_gui_port} ssl"