-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: custom runtimes, optional VPC, python 3.11 (#74)
* database bootstrapper lambda is configurable. As a result, we had to merge the `database` and `bootstrapper` constructs together, thus the `bootstrapper` construct is no longer available. * Switched to `Function` and `FromDockerBuild` for the `Code` for all lambdas to allow for more flexible configurability * made VPC optional for lambdas to allow for low-security deployments that do not necessitate a NAT gateway * harmonized pgstac to 0.7.10 in default runtimes. * harmonized python to 3.11 in default runtimes. BREAKING CHANGE: the `bootstrapper` construct was deleted and is no longer available. In addition, we switched from `PythonFunction` to `Function` for all lambdas.
- Loading branch information
Showing
23 changed files
with
3,437 additions
and
678 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
8 changes: 5 additions & 3 deletions
8
lib/bootstrapper/runtime/Dockerfile → lib/database/bootstrapper_runtime/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export * from "./bastion-host"; | ||
export * from "./bootstrapper"; | ||
export * from "./database"; | ||
export * from "./ingestor-api"; | ||
export * from "./stac-api"; | ||
export * from "./titiler-pgstac-api"; | ||
export * from "./stac-browser"; | ||
export * from "./tipg-api"; | ||
export * from "./utils"; |
Oops, something went wrong.