AWS CDK constructs for Postgresql
npm install @botpress/cdk-postgresql
import { Database } from "@botpress/cdk-postgresql";
const db = new Database(this, "DB", {
connectionInfo: {
host: "yourdb.somedomain.com",
port: 5432,
username: "master",
password: "abcd1234",
},
name: "the_database_name",
owner: "the_database_owner",
});
import { Role } from "@botpress/cdk-postgresql";
const role = new Role(this, "DB", {
connectionInfo: {
host: "yourdb.somedomain.com",
port: 5432,
username: "master",
password: "abcd1234",
},
name: "the_role_name",
password: "the_role_password",
});
You can connect to a PostpreSQL server inside a VPC:
import { Database, Provider } from "@botpress/cdk-postgresql";
const provider = new Provider(this, "Provider", {
vpc,
securityGroups: [securityGroup],
});
const db = new Database(this, "DB", {
connectionInfo: {
host: "yourdb.somedomain.com",
port: 5432,
username: "master",
password: "abcd1234",
provider,
},
name: "the_database_name",
owner: "the_database_owner",
});