Skip to content

Commit 9dfa53b

Browse files
authored
Using - instead of _ for changeSet names (#808)
1 parent d668880 commit 9dfa53b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ecs_composex/common/aws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ def plan(
398398
"""
399399
validate_can_deploy_stack_from_settings(settings, root_stack)
400400
client = settings.session.client("cloudformation")
401-
change_set_name = f"{settings.name}" + "_ecs_compose_x_" + dt.now().strftime("%s")
401+
change_set_name = f"{settings.name}" + "-ecs-compose-x-" + dt.now().strftime("%s")
402402
if assert_can_create_stack(client, settings.name) or assert_can_update_stack(
403403
client, settings.name
404404
):

0 commit comments

Comments
 (0)