Skip to content

Commit

Permalink
Increased max number of EB app versions to allow rollback further in …
Browse files Browse the repository at this point in the history
…history
  • Loading branch information
mluypaert committed May 23, 2024
1 parent 67df15f commit 1b745b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/aws_infra/cdk_classes/application_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs: Any) -> None:
enabled=True,
# max_count = number of application versions to retain, BEFORE new env creation.
# Total will be max_count+1 after update completed.
max_count=2))
max_count=20))

# Create EB application
self.eb_application = eb.CfnApplication(
Expand Down

0 comments on commit 1b745b8

Please sign in to comment.