1.1.2 • Published 4 years ago

aws-cdk-hasura v1.1.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Hasura for AWS CDK

Configures a Hasura instance and RDS Postgres database for aws-cdk

Installation

npm install aws-cdk-hasura

or

yarn add aws-cdk-hasura

Usage

import * as ec2 from "@aws-cdk/aws-ec2";
import { Hasura } from "aws-cdk-hasura";

const vpc = ec2.Vpc.fromLookup(this, "VPC", { isDefault: true });

new Hasura(this, "Hasura", {
  vpc: vpc, // VPC required
});