Skip to content

Commit

Permalink
chore: rename package to eoapi-cdk
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkinsspatial committed Jul 12, 2023
1 parent 097889d commit ede25c4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ eoapi-cdk is a package of [AWS CDK constructs](https://docs.aws.amazon.com/presc
For more background on the included services see [The Earth Observation API](https://eoapi.dev/)

## Included constructs
Detailed API docs for the constructs can be found [here](https://developmentseed.org/cdk-pgstac/).
Detailed API docs for the constructs can be found [here](https://developmentseed.org/eoapi-cdk/).

### [pgSTAC Database](https://developmentseed.org/cdk-pgstac/#pgstacdatabase-)
### [pgSTAC Database](https://developmentseed.org/eoapi-cdk/#pgstacdatabase-)
An [RDS](https://aws.amazon.com/rds/) instance with [pgSTAC](https://github.com/stac-utils/pgstac) installed and the Postgres parameters optimized for the selected instance type.

### [STAC API](https://developmentseed.org/cdk-pgstac/#pgstacapilambda-)
### [STAC API](https://developmentseed.org/eoapi-cdk/#pgstacapilambda-)
A STAC API implementation using [stac-fastapi](https://github.com/stac-utils/stac-fastapi) with a [pgSTAC backend](https://github.com/stac-utils/stac-fastapi-pgstac). Packaged as a complete runtime for deployment with API Gateway and Lambda.

### [pgSTAC Titiler API](https://developmentseed.org/cdk-pgstac/#titilerpgstacapilambda-)
### [pgSTAC Titiler API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-)
A complete dynamic tiling API using [titiler-pgstac](https://github.com/stac-utils/titiler-pgstac) to create dynamic mosaics of assets based on [STAC Search queries](https://github.com/radiantearth/stac-api-spec/tree/master/item-search). Packaged as a complete runtime for deployment with API Gateway and Lambda and fully integrated with the pgSTAC Database construct.

### [STAC Ingestor](https://developmentseed.org/cdk-pgstac/#stacingestor-)
### [STAC Ingestor](https://developmentseed.org/eoapi-cdk/#stacingestor-)
An API for large scale STAC data ingestion and validation into a pgSTAC instance.

![ingestor](/diagrams/ingestor_diagram.png)
Expand All @@ -26,20 +26,20 @@ Authentication for the STAC Ingestor API can be configured with JWTs authenticat

A sample Cognito-based authentication system is available at [aws-asdi-auth](https://github.com/developmentseed/aws-asdi-auth).

### [Bastion Host](https://developmentseed.org/cdk-pgstac/#bastionhost-)
### [Bastion Host](https://developmentseed.org/eoapi-cdk/#bastionhost-)
A bastion host is a secure gateway that provides access to resources in a private subnet. In this case it provides the ability to make administrative connections to eoAPI's pgSTAC instance.

![Alt text](/diagrams/bastion_diagram.png)

For more background on bastion hosts in AWS see [this article](https://dev.to/aws-builders/bastion-host-in-aws-vpc-2i63).

And for configuration instructions for this construct see [the docs](https://developmentseed.org/cdk-pgstac/#bastionhost-).
And for configuration instructions for this construct see [the docs](https://developmentseed.org/eoapi-cdk/#bastionhost-).


## Published Packages

- https://pypi.org/project/cdk-pgstac/
- https://www.npmjs.com/package/cdk-pgstac/
- https://pypi.org/project/eoapi-cdk/
- https://www.npmjs.com/package/eoapi-cdk/

## Release

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "cdk-pgstac",
"name": "eoapi-cdk",
"version": "4.2.3",
"description": "A set of constructs deploying pgSTAC with CDK",
"main": "lib/index.js",
Expand All @@ -22,7 +22,7 @@
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/developmentseed/cdk-pgstac.git"
"url": "https://github.com/developmentseed/eoapi-cdk.git"
},
"license": "ISC",
"stability": "experimental",
Expand All @@ -31,8 +31,8 @@
"versionFormat": "full",
"targets": {
"python": {
"distName": "cdk-pgstac",
"module": "cdk_pgstac"
"distName": "eoapi-cdk",
"module": "eoapi_cdk"
}
}
},
Expand Down

0 comments on commit ede25c4

Please sign in to comment.