eventstorecloud logo
Event Store Cloud v0.2.8, Jan 28 23

Event Store Cloud

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"
});