Event Store Cloud v0.2.15 published on Wednesday, Apr 3, 2024 by EventStore
Event Store Cloud
Event Store Cloud v0.2.15 published on Wednesday, Apr 3, 2024 by EventStore
The Event Store Cloud provider for Pulumi can provision many of the cloud resources available in Event Store Cloud. It uses the Event Store Cloud API to manage and provision resources.
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",
});
Event Store Cloud v0.2.15 published on Wednesday, Apr 3, 2024 by EventStore