Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: decouple di dc #278

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# CODEOWNERS file to define ownership for solution repository

# Default owner for all files in the repository
* @aws-solutions-library-samples/maintainers

# Explicit owner for the maintainer workflows configuration
/.github/workflows/maintainer_workflows.yml @aws-solutions-library-samples/maintainers

Expand Down
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
Loading