Skip to content

Commit

Permalink
chore: expose ecs outputs to consumers (#116)
Browse files Browse the repository at this point in the history
Signed-off-by: Orla Dunlop <orla.dunlop@engineering.digital.dwp.gov.uk>
  • Loading branch information
odunlop authored Oct 22, 2024
1 parent bef39ef commit 85e5c6d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 85e5c6d

Please sign in to comment.