From 2a3f10f72784521b07660a2807b84aa488f08ae4 Mon Sep 17 00:00:00 2001 From: Orla Dunlop Date: Mon, 21 Oct 2024 10:54:37 +0100 Subject: [PATCH] chore: expose ecs outputs to consumers Signed-off-by: Orla Dunlop --- outputs.tf | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/outputs.tf b/outputs.tf index 7e20a08..5609b0c 100644 --- a/outputs.tf +++ b/outputs.tf @@ -43,3 +43,14 @@ output "kong_iam_role" { value = var.deployment_type == "ecs" ? module.kong_ecs[0].kong_iam_role : null } +output "ecs_task_definition_outputs" { + value = module.kong_ecs[0].ecs_task_definition_outputs + description = "Full resource details for the ECS Task definition" + sensitive = false +} + +output "ecs_service_outputs" { + value = module.kong_ecs[0].ecs_service_outputs + description = "Full resource details for the ECS Service" + sensitive = false +}