Skip to content

Commit

Permalink
Merge pull request #244 from cmurp25/mainline
Browse files Browse the repository at this point in the history
Better naming for stage deployment
  • Loading branch information
D42H5 authored Dec 12, 2024
2 parents 15915da + 83479ab commit 1276221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdk/api_gateway/shared_api_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def deploy_api_stage(self, stage_name: str = "Prod"):
deployment = self.api.latest_deployment

self.stage = aws_apigateway.Stage(
self, id=stage_name,
self, id=f"SharedApiGatewayDeploymentStage{stage_name}",
deployment=deployment,
stage_name=stage_name,
)
Expand Down

0 comments on commit 1276221

Please sign in to comment.