Event Store Cloud
Community

Package contributed by a community memberv0.2.3 published on Monday, Mar 7, 2022 by EventStore
The Event Store Cloud (ESC) provider for Pulumi can provision many of the cloud resources available in ESC. It uses the ESC API to manage and provision resources.
The ESC provider must be configured with credentials to deploy and update resources; see Installation & Configuration for instructions.
Example
import * as esc from "@eventstore/pulumi-eventstorecloud";
const project = new esc.Project("sample-project", {
name: "Improved Chicken Window"
});
const network = new esc.Network("sample-network", {
name: "Chicken Window Net",
projectId: project.id,
resourceProvider: "aws",
region: "eu-west1",
cidrBlock: "172.21.0.0/16"
});