Skip to content

Commit

Permalink
try remove the time stamp from ids
Browse files Browse the repository at this point in the history
  • Loading branch information
emileten committed Feb 22, 2024
1 parent fe51b74 commit ac8b96c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration_tests/cdk/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ def __init__(

app_config = build_app_config()

vpc_stack = VpcStack(scope=app, app_config=app_config, id=f"{app_config.build_service_name('vpc')}-{timestamp}")
vpc_stack = VpcStack(scope=app, app_config=app_config, id=f"{app_config.build_service_name('vpc')}")

pgstac_infra_stack = pgStacInfraStack(
scope=app,
vpc=vpc_stack.vpc,
app_config=app_config,
id=f"{app_config.build_service_name('pgstac')}-{timestamp}"
id=f"{app_config.build_service_name('pgstac')}"
)

app.synth()

0 comments on commit ac8b96c

Please sign in to comment.