From 3c02cf24038eb9c39a817518eb465a5deb93292a Mon Sep 17 00:00:00 2001 From: Celian Raimbault Date: Thu, 23 Jan 2025 10:00:07 +0100 Subject: [PATCH] [fix-wrong-output-name-ecs] Fixed --- tasks/aws/ecs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/aws/ecs.py b/tasks/aws/ecs.py index 2dd268dfb..e36b453fc 100644 --- a/tasks/aws/ecs.py +++ b/tasks/aws/ecs.py @@ -77,7 +77,7 @@ def create_ecs( def _show_connection_message(ctx: Context, config_path: Optional[str], full_stack_name: str): outputs = tool.get_stack_json_outputs(ctx, full_stack_name) - cluster_name = outputs["dd-Cluster-ecs-cluster"]["clusterName"] + cluster_name = outputs["dd-Cluster-ecs"]["clusterName"] try: local_config = config.get_local_config(config_path)