The Event Store Cloud provider must be configured with credentials to deploy and update resources; see Installation & Configuration for instructions.
Example#
import * as eventstore from "@eventstore/pulumi-eventstorecloud";
const project = new eventstore.Project("sample-project", {
name: "Improved Chicken Window",
});
const network = new eventstore.Network("sample-network", {
name: "Chicken Window Net",
projectId: project.id,
resourceProvider: "aws",
region: "eu-west1",
cidrBlock: "172.21.0.0/16",
});