Skip to content

Commit

Permalink
ci(engine): Add meaningful prefix to alb and fargate resource names
Browse files Browse the repository at this point in the history
  • Loading branch information
topher-lo committed Mar 19, 2024
1 parent 1f8e770 commit dd15db9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions aws/stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def __init__(self, scope: Construct, id: str, **kwargs) -> None:
# Create ALB Fargate service
ecs_service = ecs.FargateService(
self,
"FargateService",
"TracecatEngineFargateService",
cluster=cluster,
task_definition=task_definition,
)
Expand All @@ -258,7 +258,11 @@ def __init__(self, scope: Construct, id: str, **kwargs) -> None:

# Load balancer
alb = elbv2.ApplicationLoadBalancer(
self, "Alb", vpc=cluster.vpc, internet_facing=True, load_balancer_name="Alb"
self,
"TracecatEngineAlb",
vpc=cluster.vpc,
internet_facing=True,
load_balancer_name="Alb",
)

# Main HTTPS listener
Expand Down

0 comments on commit dd15db9

Please sign in to comment.