From f82c5de6af6b413f1fb85b2c1c3cda6ff849a9d9 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 23 Sep 2025 14:37:11 +0100 Subject: [PATCH] Using - instead of _ for changeSet names --- ecs_composex/common/aws.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecs_composex/common/aws.py b/ecs_composex/common/aws.py index f041b3b0..a0da2f43 100644 --- a/ecs_composex/common/aws.py +++ b/ecs_composex/common/aws.py @@ -398,7 +398,7 @@ def plan( """ validate_can_deploy_stack_from_settings(settings, root_stack) client = settings.session.client("cloudformation") - change_set_name = f"{settings.name}" + "_ecs_compose_x_" + dt.now().strftime("%s") + change_set_name = f"{settings.name}" + "-ecs-compose-x-" + dt.now().strftime("%s") if assert_can_create_stack(client, settings.name) or assert_can_update_stack( client, settings.name ):