Skip to content

Commit

Permalink
Merge pull request #7 from brucehoff/prod
Browse files Browse the repository at this point in the history
IT-4010 Deploy dev' change to prod'
  • Loading branch information
brucehoff authored Nov 16, 2024
2 parents 00ee22f + 35c84f2 commit ac4f928
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker_fargate/docker_fargate_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ def __init__(self, scope: Construct, context: str, env: dict, vpc: ec2.Vpc, **kw
self,
f'{stack_prefix}-Service',
cluster=cluster, # Required
cpu=256, # Default is 256
cpu=2048, # Default is 256
desired_count=2, # Number of copies of the 'task' (i.e. the app') running behind the ALB
circuit_breaker=ecs.DeploymentCircuitBreaker(rollback=True), # Enable rollback on deployment failure
task_image_options=task_image_options,
memory_limit_mib=1024, # Default is 512
memory_limit_mib=4096, # Default is 512
public_load_balancer=True, # Default is False
redirect_http=True,
# TLS:
Expand Down

0 comments on commit ac4f928

Please sign in to comment.