1. Packages
  2. CockroachDB Cloud
  3. API Docs
  4. LogExportConfig
CockroachDB v0.9.4 published on Friday, Mar 21, 2025 by pulumiverse

cockroach.LogExportConfig

Explore with Pulumi AI

Log Export configuration for a cluster.

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cockroach.LogExportConfig;
import com.pulumi.cockroach.LogExportConfigArgs;
import com.pulumi.cockroach.inputs.LogExportConfigGroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var clusterId = config.get("clusterId");
        final var authPrincipal = config.get("authPrincipal");
        var example = new LogExportConfig("example", LogExportConfigArgs.builder()
            .clusterId(clusterId)
            .authPrincipal(authPrincipal)
            .logName("example")
            .type("GCP_CLOUD_LOGGING")
            .redact(true)
            .groups(            
                LogExportConfigGroupArgs.builder()
                    .log_name("sql")
                    .channels(                    
                        "SQL_SCHEMA",
                        "SQL_EXEC")
                    .redact(false)
                    .build(),
                LogExportConfigGroupArgs.builder()
                    .log_name("devops")
                    .channels(                    
                        "OPS",
                        "HEALTH",
                        "STORAGE")
                    .min_level("WARNING")
                    .build())
            .omittedChannels("SQL_PERF")
            .build());

    }
}
Copy
configuration:
  clusterId:
    type: string
  authPrincipal:
    type: string
resources:
  example:
    type: cockroach:LogExportConfig
    properties:
      clusterId: ${clusterId}
      authPrincipal: ${authPrincipal}
      logName: example
      type: GCP_CLOUD_LOGGING
      redact: true
      groups:
        - log_name: sql
          channels:
            - SQL_SCHEMA
            - SQL_EXEC
          redact: false
        - log_name: devops
          channels:
            - OPS
            - HEALTH
            - STORAGE
          min_level: WARNING
      omittedChannels:
        - SQL_PERF
Copy

Create LogExportConfig Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new LogExportConfig(name: string, args: LogExportConfigArgs, opts?: CustomResourceOptions);
@overload
def LogExportConfig(resource_name: str,
                    args: LogExportConfigArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def LogExportConfig(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    auth_principal: Optional[str] = None,
                    cluster_id: Optional[str] = None,
                    log_name: Optional[str] = None,
                    type: Optional[str] = None,
                    groups: Optional[Sequence[LogExportConfigGroupArgs]] = None,
                    omitted_channels: Optional[Sequence[str]] = None,
                    redact: Optional[bool] = None,
                    region: Optional[str] = None)
func NewLogExportConfig(ctx *Context, name string, args LogExportConfigArgs, opts ...ResourceOption) (*LogExportConfig, error)
public LogExportConfig(string name, LogExportConfigArgs args, CustomResourceOptions? opts = null)
public LogExportConfig(String name, LogExportConfigArgs args)
public LogExportConfig(String name, LogExportConfigArgs args, CustomResourceOptions options)
type: cockroach:LogExportConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. LogExportConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. LogExportConfigArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. LogExportConfigArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. LogExportConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LogExportConfigArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var logExportConfigResource = new Cockroach.LogExportConfig("logExportConfigResource", new()
{
    AuthPrincipal = "string",
    ClusterId = "string",
    LogName = "string",
    Type = "string",
    Groups = new[]
    {
        new Cockroach.Inputs.LogExportConfigGroupArgs
        {
            Channels = new[]
            {
                "string",
            },
            LogName = "string",
            MinLevel = "string",
            Redact = false,
        },
    },
    OmittedChannels = new[]
    {
        "string",
    },
    Redact = false,
    Region = "string",
});
Copy
example, err := cockroach.NewLogExportConfig(ctx, "logExportConfigResource", &cockroach.LogExportConfigArgs{
	AuthPrincipal: pulumi.String("string"),
	ClusterId:     pulumi.String("string"),
	LogName:       pulumi.String("string"),
	Type:          pulumi.String("string"),
	Groups: cockroach.LogExportConfigGroupArray{
		&cockroach.LogExportConfigGroupArgs{
			Channels: pulumi.StringArray{
				pulumi.String("string"),
			},
			LogName:  pulumi.String("string"),
			MinLevel: pulumi.String("string"),
			Redact:   pulumi.Bool(false),
		},
	},
	OmittedChannels: pulumi.StringArray{
		pulumi.String("string"),
	},
	Redact: pulumi.Bool(false),
	Region: pulumi.String("string"),
})
Copy
var logExportConfigResource = new LogExportConfig("logExportConfigResource", LogExportConfigArgs.builder()
    .authPrincipal("string")
    .clusterId("string")
    .logName("string")
    .type("string")
    .groups(LogExportConfigGroupArgs.builder()
        .channels("string")
        .logName("string")
        .minLevel("string")
        .redact(false)
        .build())
    .omittedChannels("string")
    .redact(false)
    .region("string")
    .build());
Copy
log_export_config_resource = cockroach.LogExportConfig("logExportConfigResource",
    auth_principal="string",
    cluster_id="string",
    log_name="string",
    type="string",
    groups=[{
        "channels": ["string"],
        "log_name": "string",
        "min_level": "string",
        "redact": False,
    }],
    omitted_channels=["string"],
    redact=False,
    region="string")
Copy
const logExportConfigResource = new cockroach.LogExportConfig("logExportConfigResource", {
    authPrincipal: "string",
    clusterId: "string",
    logName: "string",
    type: "string",
    groups: [{
        channels: ["string"],
        logName: "string",
        minLevel: "string",
        redact: false,
    }],
    omittedChannels: ["string"],
    redact: false,
    region: "string",
});
Copy
type: cockroach:LogExportConfig
properties:
    authPrincipal: string
    clusterId: string
    groups:
        - channels:
            - string
          logName: string
          minLevel: string
          redact: false
    logName: string
    omittedChannels:
        - string
    redact: false
    region: string
    type: string
Copy

LogExportConfig Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The LogExportConfig resource accepts the following input properties:

AuthPrincipal This property is required. string
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
ClusterId This property is required. string
Cluster ID.
LogName This property is required. string
An identifier for the logs in the customer's log sink.
Type This property is required. string
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
Groups List<Pulumiverse.Cockroach.Inputs.LogExportConfigGroup>
OmittedChannels List<string>
Controls what CRDB channels do not get exported.
Redact bool
Controls whether logs are redacted before forwarding to customer sinks.
Region string
Controls whether all logs are sent to a specific region in the customer sink.
AuthPrincipal This property is required. string
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
ClusterId This property is required. string
Cluster ID.
LogName This property is required. string
An identifier for the logs in the customer's log sink.
Type This property is required. string
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
Groups []LogExportConfigGroupArgs
OmittedChannels []string
Controls what CRDB channels do not get exported.
Redact bool
Controls whether logs are redacted before forwarding to customer sinks.
Region string
Controls whether all logs are sent to a specific region in the customer sink.
authPrincipal This property is required. String
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
clusterId This property is required. String
Cluster ID.
logName This property is required. String
An identifier for the logs in the customer's log sink.
type This property is required. String
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
groups List<LogExportConfigGroup>
omittedChannels List<String>
Controls what CRDB channels do not get exported.
redact Boolean
Controls whether logs are redacted before forwarding to customer sinks.
region String
Controls whether all logs are sent to a specific region in the customer sink.
authPrincipal This property is required. string
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
clusterId This property is required. string
Cluster ID.
logName This property is required. string
An identifier for the logs in the customer's log sink.
type This property is required. string
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
groups LogExportConfigGroup[]
omittedChannels string[]
Controls what CRDB channels do not get exported.
redact boolean
Controls whether logs are redacted before forwarding to customer sinks.
region string
Controls whether all logs are sent to a specific region in the customer sink.
auth_principal This property is required. str
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
cluster_id This property is required. str
Cluster ID.
log_name This property is required. str
An identifier for the logs in the customer's log sink.
type This property is required. str
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
groups Sequence[LogExportConfigGroupArgs]
omitted_channels Sequence[str]
Controls what CRDB channels do not get exported.
redact bool
Controls whether logs are redacted before forwarding to customer sinks.
region str
Controls whether all logs are sent to a specific region in the customer sink.
authPrincipal This property is required. String
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
clusterId This property is required. String
Cluster ID.
logName This property is required. String
An identifier for the logs in the customer's log sink.
type This property is required. String
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
groups List<Property Map>
omittedChannels List<String>
Controls what CRDB channels do not get exported.
redact Boolean
Controls whether logs are redacted before forwarding to customer sinks.
region String
Controls whether all logs are sent to a specific region in the customer sink.

Outputs

All input properties are implicitly available as output properties. Additionally, the LogExportConfig resource produces the following output properties:

CreatedAt string
Indicates when log export was initially configured.
Id string
The provider-assigned unique ID for this managed resource.
Status string
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
UpdatedAt string
Indicates when the log export configuration was last updated.
UserMessage string
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
CreatedAt string
Indicates when log export was initially configured.
Id string
The provider-assigned unique ID for this managed resource.
Status string
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
UpdatedAt string
Indicates when the log export configuration was last updated.
UserMessage string
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
createdAt String
Indicates when log export was initially configured.
id String
The provider-assigned unique ID for this managed resource.
status String
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
updatedAt String
Indicates when the log export configuration was last updated.
userMessage String
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
createdAt string
Indicates when log export was initially configured.
id string
The provider-assigned unique ID for this managed resource.
status string
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
updatedAt string
Indicates when the log export configuration was last updated.
userMessage string
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
created_at str
Indicates when log export was initially configured.
id str
The provider-assigned unique ID for this managed resource.
status str
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
updated_at str
Indicates when the log export configuration was last updated.
user_message str
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
createdAt String
Indicates when log export was initially configured.
id String
The provider-assigned unique ID for this managed resource.
status String
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
updatedAt String
Indicates when the log export configuration was last updated.
userMessage String
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.

Look up Existing LogExportConfig Resource

Get an existing LogExportConfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: LogExportConfigState, opts?: CustomResourceOptions): LogExportConfig
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auth_principal: Optional[str] = None,
        cluster_id: Optional[str] = None,
        created_at: Optional[str] = None,
        groups: Optional[Sequence[LogExportConfigGroupArgs]] = None,
        log_name: Optional[str] = None,
        omitted_channels: Optional[Sequence[str]] = None,
        redact: Optional[bool] = None,
        region: Optional[str] = None,
        status: Optional[str] = None,
        type: Optional[str] = None,
        updated_at: Optional[str] = None,
        user_message: Optional[str] = None) -> LogExportConfig
func GetLogExportConfig(ctx *Context, name string, id IDInput, state *LogExportConfigState, opts ...ResourceOption) (*LogExportConfig, error)
public static LogExportConfig Get(string name, Input<string> id, LogExportConfigState? state, CustomResourceOptions? opts = null)
public static LogExportConfig get(String name, Output<String> id, LogExportConfigState state, CustomResourceOptions options)
resources:  _:    type: cockroach:LogExportConfig    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AuthPrincipal string
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
ClusterId string
Cluster ID.
CreatedAt string
Indicates when log export was initially configured.
Groups List<Pulumiverse.Cockroach.Inputs.LogExportConfigGroup>
LogName string
An identifier for the logs in the customer's log sink.
OmittedChannels List<string>
Controls what CRDB channels do not get exported.
Redact bool
Controls whether logs are redacted before forwarding to customer sinks.
Region string
Controls whether all logs are sent to a specific region in the customer sink.
Status string
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
Type string
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
UpdatedAt string
Indicates when the log export configuration was last updated.
UserMessage string
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
AuthPrincipal string
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
ClusterId string
Cluster ID.
CreatedAt string
Indicates when log export was initially configured.
Groups []LogExportConfigGroupArgs
LogName string
An identifier for the logs in the customer's log sink.
OmittedChannels []string
Controls what CRDB channels do not get exported.
Redact bool
Controls whether logs are redacted before forwarding to customer sinks.
Region string
Controls whether all logs are sent to a specific region in the customer sink.
Status string
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
Type string
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
UpdatedAt string
Indicates when the log export configuration was last updated.
UserMessage string
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
authPrincipal String
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
clusterId String
Cluster ID.
createdAt String
Indicates when log export was initially configured.
groups List<LogExportConfigGroup>
logName String
An identifier for the logs in the customer's log sink.
omittedChannels List<String>
Controls what CRDB channels do not get exported.
redact Boolean
Controls whether logs are redacted before forwarding to customer sinks.
region String
Controls whether all logs are sent to a specific region in the customer sink.
status String
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
type String
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
updatedAt String
Indicates when the log export configuration was last updated.
userMessage String
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
authPrincipal string
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
clusterId string
Cluster ID.
createdAt string
Indicates when log export was initially configured.
groups LogExportConfigGroup[]
logName string
An identifier for the logs in the customer's log sink.
omittedChannels string[]
Controls what CRDB channels do not get exported.
redact boolean
Controls whether logs are redacted before forwarding to customer sinks.
region string
Controls whether all logs are sent to a specific region in the customer sink.
status string
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
type string
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
updatedAt string
Indicates when the log export configuration was last updated.
userMessage string
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
auth_principal str
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
cluster_id str
Cluster ID.
created_at str
Indicates when log export was initially configured.
groups Sequence[LogExportConfigGroupArgs]
log_name str
An identifier for the logs in the customer's log sink.
omitted_channels Sequence[str]
Controls what CRDB channels do not get exported.
redact bool
Controls whether logs are redacted before forwarding to customer sinks.
region str
Controls whether all logs are sent to a specific region in the customer sink.
status str
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
type str
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
updated_at str
Indicates when the log export configuration was last updated.
user_message str
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.
authPrincipal String
Either the AWS Role ARN that identifies a role that the cluster account can assume to write to CloudWatch or the GCP Project ID that the cluster service account has permissions to write to for cloud logging.
clusterId String
Cluster ID.
createdAt String
Indicates when log export was initially configured.
groups List<Property Map>
logName String
An identifier for the logs in the customer's log sink.
omittedChannels List<String>
Controls what CRDB channels do not get exported.
redact Boolean
Controls whether logs are redacted before forwarding to customer sinks.
region String
Controls whether all logs are sent to a specific region in the customer sink.
status String
Encodes the possible states that a log export configuration can be in as it is created, deployed, and disabled.
type String
The cloud selection being exported to along with the cloud logging platform. Possible values are: * AWS_CLOUDWATCH * GCP_CLOUD_LOGGING * AZURE_LOG_ANALYTICS
updatedAt String
Indicates when the log export configuration was last updated.
userMessage String
Elaborates on the log export status and hints at how to fix issues that may have occurred during asynchronous operations.

Supporting Types

LogExportConfigGroup
, LogExportConfigGroupArgs

Channels This property is required. List<string>
A list of CockroachDB log channels to include in this group.
LogName This property is required. string
The name of the group, reflected in the log sink.
MinLevel string
The minimum log level to filter to this log group.
Redact bool
Governs whether this log group should aggregate redacted logs if unset.
Channels This property is required. []string
A list of CockroachDB log channels to include in this group.
LogName This property is required. string
The name of the group, reflected in the log sink.
MinLevel string
The minimum log level to filter to this log group.
Redact bool
Governs whether this log group should aggregate redacted logs if unset.
channels This property is required. List<String>
A list of CockroachDB log channels to include in this group.
logName This property is required. String
The name of the group, reflected in the log sink.
minLevel String
The minimum log level to filter to this log group.
redact Boolean
Governs whether this log group should aggregate redacted logs if unset.
channels This property is required. string[]
A list of CockroachDB log channels to include in this group.
logName This property is required. string
The name of the group, reflected in the log sink.
minLevel string
The minimum log level to filter to this log group.
redact boolean
Governs whether this log group should aggregate redacted logs if unset.
channels This property is required. Sequence[str]
A list of CockroachDB log channels to include in this group.
log_name This property is required. str
The name of the group, reflected in the log sink.
min_level str
The minimum log level to filter to this log group.
redact bool
Governs whether this log group should aggregate redacted logs if unset.
channels This property is required. List<String>
A list of CockroachDB log channels to include in this group.
logName This property is required. String
The name of the group, reflected in the log sink.
minLevel String
The minimum log level to filter to this log group.
redact Boolean
Governs whether this log group should aggregate redacted logs if unset.

Import

format:

$ pulumi import cockroach:index/logExportConfig:LogExportConfig example 1f69fdd2-600a-4cfc-a9ba-16995df0d77d
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
cockroach pulumiverse/pulumi-cockroach
License
Apache-2.0
Notes
This Pulumi package is based on the cockroach Terraform Provider.