mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* add basic infrastructure
* add cloudfront distribution
* WIP checkpoint
* add ecs cluster
* add conditions and route53 dns entry to cloudfront
* WIP checkin
* Added a raw execution mode for demo/testing
* Add pre-defined Task for ogr2ogr
* Tweak Task Definition name
* Mostly working except for logging error
* Add additional logging permissions
* Succesfully executed ogr2ogr in fargate. S3 permissions needs to be addresses
* Add multipart permissions
* Add a few more actions
* Put IAM Policy on the correct resource
* Deploy lambda and update events
* fix iam permissions 🤦🏻♂️
* Add reference to Tippecanoe container
* Clean up to only use named actions
* Refactor resources to include support for tippecanoe
* Make a more interesting GDAL command
* Pull all ECS variables into environment file; successful test of running tippecanoe container
* Support pre/post commands
* Refactor codebase and enable linting
* Implement many-to-many enrichment between USDS CSV files and Census zipped shapefiles
* Change the GDAL image to one with the built-in drivers
* Add some additional fixes to support the enrichment use case
* Clean up old hello-world example
* Expand the README to include ways to execute the lambdas
* Validate scheduled lambda execution and then comment out
Co-authored-by: Tim Zwolak <timothypage@gmail.com>
19 lines
No EOL
630 B
Bash
19 lines
No EOL
630 B
Bash
REGION=us-east-1
|
|
STAGE=sit
|
|
|
|
# ESC Cluster name that will from the containers
|
|
ECS_CLUSTER=j40-sit-justice40-data-harvester-ECSCluster-ktXGGU9zjwkb
|
|
|
|
# VPC Private Subnet that has a NAT GAteway
|
|
VPC_SUBNET_ID=subnet-07e68cb57322f7b1f
|
|
|
|
# Names of the container and task names.
|
|
GDAL_TASK_DEFINITION=sit-justice40-data-harvester-gdal
|
|
GDAL_CONTAINER_DEFINITION=sit-justice40-data-harvester-osgeo-gdal
|
|
TIPPECANOE_TASK_DEFINITION=sit-justice40-data-harvester-tippecanoe
|
|
TIPPECANOE_CONTAINER_DEFINITION=sit-justice40-data-harvester-mgiddens-tippecanoe
|
|
|
|
# AWS Credentials
|
|
AWS_ACCESS_KEY_ID=
|
|
AWS_SECRET_ACCESS_KEY=
|
|
AWS_DEFAULT_REGION=us-east-1 |