The GraphweaverApp
CDK construct streamlines the deployment of your Graphweaver applications on AWS. This page outlines how to implement this construct using either ECS or Lambda.
Install the GraphweaverApp
construct from npm:
npm install @exogee/graphweaver-cdk
The GraphweaverApp
construct expects a configuration object with the following properties:
name
: The name of your applicationnetwork
:
vpc
: The VPC to deploy intographqlSecurityGroup
: Security group for the GraphQL APIdatabaseSecurityGroup
: Security group for the database (if applicable)adminUI
:
buildPath
: Path to the admin UI build directorycert
: ARN of the certificate for the websiteurl
: Custom domain name for the websitecustomHeaders
(optional): Custom headers to add to the websitecsp
(optional): Content Security Policy for the websitedatabase
(optional):
username
: Database usernamename
: Database nameinstanceType
(optional): Database instance type (defaults to t4g.micro)version
(optional): Postgres version (defaults to VER_16_2)ecs
or lambda
: Configure one of these compute platforms, but not both.Let’s first look at the ECS configuration options.