Skip to content

Commit

Permalink
fix: decouple DI and DC stacks
Browse files Browse the repository at this point in the history
  • Loading branch information
drduhe committed Jan 10, 2025
1 parent 0dd965f commit a2232dd
Show file tree
Hide file tree
Showing 5 changed files with 1,242 additions and 1,100 deletions.
7 changes: 1 addition & 6 deletions .github/codebuild/destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,7 @@ phases:

build:
commands:
- |
if [[ "$BASE_REF" == "dev" ]]; then
npm run destroy:minimal
else
npm run destroy
fi
- npm run destroy

post_build:
commands:
Expand Down
4 changes: 2 additions & 2 deletions bin/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ if (appConfig.tileServer?.deploy) {

// Deploy the data intake component.
if (appConfig.dataIntake?.deploy) {
diDataplaneStack = deployDataIntake(vpcStack);
deployDataIntake(vpcStack);
}

// Deploy the STAC component
if (appConfig.dataCatalog?.deploy) {
deployDataCatalog(vpcStack, diDataplaneStack?.resources.stacTopic);
deployDataCatalog(vpcStack);
}

// Deploy test model endpoints
Expand Down
Loading

0 comments on commit a2232dd

Please sign in to comment.