-
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.
* PR template improvement readme * add vector, simplify deployment files * use short commit sha to name test deployment stacks to avoid concurrency problems * update package-lock.json to fix cloud formation bug
- Loading branch information
Showing
9 changed files
with
159 additions
and
131 deletions.
There are no files selected for viewing
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,2 +1,4 @@ | ||
## :warning: Checklist if your PR is changing anything else than documentation | ||
- [ ] The manual deployment workflow ran successfully | ||
- [ ] Posted the link to a successful manually triggered deployment workflow (successful including the resources destruction) | ||
|
||
## Merge request description |
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
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,17 +1,154 @@ | ||
from aws_cdk import App | ||
from config import build_app_config, AppConfig | ||
from aws_cdk import ( | ||
Stack, | ||
aws_ec2, | ||
aws_rds, | ||
App, | ||
RemovalPolicy | ||
) | ||
from constructs import Construct | ||
from eoapi_cdk import ( | ||
PgStacApiLambda, | ||
PgStacDatabase, | ||
TitilerPgstacApiLambda, | ||
TiPgApiLambda, | ||
) | ||
|
||
|
||
class VpcStack(Stack): | ||
def __init__(self, scope: Construct, app_config: AppConfig, id: str, **kwargs) -> None: | ||
super().__init__( | ||
scope, | ||
id=id, | ||
tags=app_config.tags, | ||
**kwargs | ||
) | ||
|
||
self.vpc = aws_ec2.Vpc( | ||
self, | ||
"vpc", | ||
subnet_configuration=[ | ||
aws_ec2.SubnetConfiguration( | ||
name="ingress", subnet_type=aws_ec2.SubnetType.PUBLIC, cidr_mask=24 | ||
), | ||
] | ||
) | ||
|
||
self.vpc.add_interface_endpoint( | ||
"SecretsManagerEndpoint", | ||
service=aws_ec2.InterfaceVpcEndpointAwsService.SECRETS_MANAGER, | ||
) | ||
|
||
self.vpc.add_interface_endpoint( | ||
"CloudWatchEndpoint", | ||
service=aws_ec2.InterfaceVpcEndpointAwsService.CLOUDWATCH_LOGS, | ||
) | ||
|
||
self.vpc.add_gateway_endpoint( | ||
"S3", service=aws_ec2.GatewayVpcEndpointAwsService.S3 | ||
) | ||
|
||
self.export_value( | ||
self.vpc.select_subnets(subnet_type=aws_ec2.SubnetType.PUBLIC) | ||
.subnets[0] | ||
.subnet_id | ||
) | ||
self.export_value( | ||
self.vpc.select_subnets(subnet_type=aws_ec2.SubnetType.PUBLIC) | ||
.subnets[1] | ||
.subnet_id | ||
) | ||
|
||
|
||
class pgStacInfraStack(Stack): | ||
def __init__( | ||
self, | ||
scope: Construct, | ||
vpc: aws_ec2.Vpc, | ||
id: str, | ||
app_config: AppConfig, | ||
**kwargs, | ||
) -> None: | ||
super().__init__( | ||
scope, | ||
id=id, | ||
tags=app_config.tags, | ||
**kwargs, | ||
) | ||
|
||
pgstac_db = PgStacDatabase( | ||
self, | ||
"pgstac-db", | ||
vpc=vpc, | ||
engine=aws_rds.DatabaseInstanceEngine.postgres( | ||
version=aws_rds.PostgresEngineVersion.VER_14 | ||
), | ||
vpc_subnets=aws_ec2.SubnetSelection( | ||
subnet_type=aws_ec2.SubnetType.PUBLIC, | ||
), | ||
allocated_storage=app_config.db_allocated_storage, | ||
instance_type=aws_ec2.InstanceType(app_config.db_instance_type), | ||
removal_policy=RemovalPolicy.DESTROY | ||
) | ||
|
||
pgstac_db.db.connections.allow_default_port_from_any_ipv4() | ||
|
||
PgStacApiLambda( | ||
self, | ||
"pgstac-api", | ||
api_env={ | ||
"NAME": app_config.build_service_name("STAC API"), | ||
"description": f"{app_config.stage} STAC API", | ||
}, | ||
db=pgstac_db.db, | ||
db_secret=pgstac_db.pgstac_secret | ||
) | ||
|
||
TitilerPgstacApiLambda( | ||
self, | ||
"titiler-pgstac-api", | ||
api_env={ | ||
"NAME": app_config.build_service_name("titiler pgSTAC API"), | ||
"description": f"{app_config.stage} titiler pgstac API", | ||
}, | ||
db=pgstac_db.db, | ||
db_secret=pgstac_db.pgstac_secret, | ||
buckets=[], | ||
lambda_function_options={ | ||
"allow_public_subnet": True, | ||
}, | ||
) | ||
|
||
TiPgApiLambda( | ||
self, | ||
"tipg-api", | ||
db=pgstac_db.db, | ||
db_secret=pgstac_db.pgstac_secret, | ||
api_env={ | ||
"NAME": app_config.build_service_name("tipg API"), | ||
"description": f"{app_config.stage} tipg API", | ||
}, | ||
lambda_function_options={ | ||
"allow_public_subnet": True, | ||
}, | ||
) | ||
|
||
from config import build_app_config | ||
from eoapi_template import pgStacInfra, vpc | ||
|
||
app = App() | ||
|
||
app_config = build_app_config() | ||
|
||
vpc_stack = vpc.VpcStack(scope=app, app_config=app_config) | ||
vpc_stack_id = f"vpc{app_config.project_id}" | ||
|
||
vpc_stack = VpcStack(scope=app, app_config=app_config, id=vpc_stack_id) | ||
|
||
pgstac_infra_stack = pgStacInfra.pgStacInfraStack( | ||
pgstac_infra_stack_id = f"pgstac{app_config.project_id}" | ||
|
||
pgstac_infra_stack = pgStacInfraStack( | ||
scope=app, | ||
vpc=vpc_stack.vpc, | ||
app_config=app_config, | ||
id=pgstac_infra_stack_id | ||
) | ||
|
||
app.synth() |
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
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.