CockroachDB v0.6.0 published on Friday, Nov 1, 2024 by pulumiverse
CockroachDB Cloud
The Cockroach provider for Pulumi can be used to provision any of the cloud resources available in CockroachDB or a self hosted CockroachDB instance.
The Cockroach provider must be configured with credentials to deploy and update resources in CockroachDB.
Example
import * as cockroach from "@pulumiverse/cockroach";
const cluster = new cockroach.Cluster("example", {
cloudProvider: "AWS",
name: "cockroach-provider-ts",
regions: [
{
name: "us-west-2",
},
],
serverless: {
spendLimit: 0,
},
});
import pulumiverse_cockroach as cockroach
cluster = cockroach.Cluster(
"example",
cloud_provider="AWS",
name="cockroach-provider-py",
regions=[
cockroach.ClusterRegionArgs(
name="us-west-2",
),
],
serverless=cockroach.ClusterServerlessArgs(
spend_limit=0,
),
)
Issues
This is a community maintained provider. Please file issues and feature requests here: