confluentcloud.SchemaRegistryCluster
Explore with Pulumi AI
Import
You can import a Schema Registry cluster by using Environment ID and Schema Registry cluster ID, in the format <Environment ID>/<Schema Registry cluster ID>
, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
$ pulumi import confluentcloud:index/schemaRegistryCluster:SchemaRegistryCluster example env-abc123/lsrc-abc123
!> Warning: Do not forget to delete terminal command history afterwards for security purposes.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ConfluentCloud = Pulumi.ConfluentCloud;
return await Deployment.RunAsync(() =>
{
var development = new ConfluentCloud.Environment("development");
var example = ConfluentCloud.GetSchemaRegistryRegion.Invoke(new()
{
Cloud = "AWS",
Region = "us-east-2",
Package = "ESSENTIALS",
});
var essentials = new ConfluentCloud.SchemaRegistryCluster("essentials", new()
{
Package = example.Apply(getSchemaRegistryRegionResult => getSchemaRegistryRegionResult.Package),
Environment = new ConfluentCloud.Inputs.SchemaRegistryClusterEnvironmentArgs
{
Id = development.Id,
},
Region = new ConfluentCloud.Inputs.SchemaRegistryClusterRegionArgs
{
Id = example.Apply(getSchemaRegistryRegionResult => getSchemaRegistryRegionResult.Id),
},
});
});
package main
import (
"github.com/pulumi/pulumi-confluentcloud/sdk/go/confluentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
development, err := confluentcloud.NewEnvironment(ctx, "development", nil)
if err != nil {
return err
}
example, err := confluentcloud.GetSchemaRegistryRegion(ctx, &confluentcloud.GetSchemaRegistryRegionArgs{
Cloud: "AWS",
Region: "us-east-2",
Package: "ESSENTIALS",
}, nil)
if err != nil {
return err
}
_, err = confluentcloud.NewSchemaRegistryCluster(ctx, "essentials", &confluentcloud.SchemaRegistryClusterArgs{
Package: *pulumi.String(example.Package),
Environment: &confluentcloud.SchemaRegistryClusterEnvironmentArgs{
Id: development.ID(),
},
Region: &confluentcloud.SchemaRegistryClusterRegionArgs{
Id: *pulumi.String(example.Id),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.confluentcloud.Environment;
import com.pulumi.confluentcloud.ConfluentcloudFunctions;
import com.pulumi.confluentcloud.inputs.GetSchemaRegistryRegionArgs;
import com.pulumi.confluentcloud.SchemaRegistryCluster;
import com.pulumi.confluentcloud.SchemaRegistryClusterArgs;
import com.pulumi.confluentcloud.inputs.SchemaRegistryClusterEnvironmentArgs;
import com.pulumi.confluentcloud.inputs.SchemaRegistryClusterRegionArgs;
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) {
var development = new Environment("development");
final var example = ConfluentcloudFunctions.getSchemaRegistryRegion(GetSchemaRegistryRegionArgs.builder()
.cloud("AWS")
.region("us-east-2")
.package_("ESSENTIALS")
.build());
var essentials = new SchemaRegistryCluster("essentials", SchemaRegistryClusterArgs.builder()
.package_(example.applyValue(getSchemaRegistryRegionResult -> getSchemaRegistryRegionResult.package()))
.environment(SchemaRegistryClusterEnvironmentArgs.builder()
.id(development.id())
.build())
.region(SchemaRegistryClusterRegionArgs.builder()
.id(example.applyValue(getSchemaRegistryRegionResult -> getSchemaRegistryRegionResult.id()))
.build())
.build());
}
}
import pulumi
import pulumi_confluentcloud as confluentcloud
development = confluentcloud.Environment("development")
example = confluentcloud.get_schema_registry_region(cloud="AWS",
region="us-east-2",
package="ESSENTIALS")
essentials = confluentcloud.SchemaRegistryCluster("essentials",
package=example.package,
environment=confluentcloud.SchemaRegistryClusterEnvironmentArgs(
id=development.id,
),
region=confluentcloud.SchemaRegistryClusterRegionArgs(
id=example.id,
))
import * as pulumi from "@pulumi/pulumi";
import * as confluentcloud from "@pulumi/confluentcloud";
const development = new confluentcloud.Environment("development", {});
const example = confluentcloud.getSchemaRegistryRegion({
cloud: "AWS",
region: "us-east-2",
"package": "ESSENTIALS",
});
const essentials = new confluentcloud.SchemaRegistryCluster("essentials", {
"package": example.then(example => example["package"]),
environment: {
id: development.id,
},
region: {
id: example.then(example => example.id),
},
});
resources:
development:
type: confluentcloud:Environment
essentials:
type: confluentcloud:SchemaRegistryCluster
properties:
package: ${example.package}
environment:
id: ${development.id}
region:
id: ${example.id}
variables:
example:
fn::invoke:
Function: confluentcloud:getSchemaRegistryRegion
Arguments:
cloud: AWS
region: us-east-2
package: ESSENTIALS
Create SchemaRegistryCluster Resource
new SchemaRegistryCluster(name: string, args: SchemaRegistryClusterArgs, opts?: CustomResourceOptions);
@overload
def SchemaRegistryCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
environment: Optional[SchemaRegistryClusterEnvironmentArgs] = None,
package: Optional[str] = None,
region: Optional[SchemaRegistryClusterRegionArgs] = None)
@overload
def SchemaRegistryCluster(resource_name: str,
args: SchemaRegistryClusterArgs,
opts: Optional[ResourceOptions] = None)
func NewSchemaRegistryCluster(ctx *Context, name string, args SchemaRegistryClusterArgs, opts ...ResourceOption) (*SchemaRegistryCluster, error)
public SchemaRegistryCluster(string name, SchemaRegistryClusterArgs args, CustomResourceOptions? opts = null)
public SchemaRegistryCluster(String name, SchemaRegistryClusterArgs args)
public SchemaRegistryCluster(String name, SchemaRegistryClusterArgs args, CustomResourceOptions options)
type: confluentcloud:SchemaRegistryCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SchemaRegistryClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SchemaRegistryClusterArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SchemaRegistryClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SchemaRegistryClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SchemaRegistryClusterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
SchemaRegistryCluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SchemaRegistryCluster resource accepts the following input properties:
- Environment
Pulumi.
Confluent Cloud. Inputs. Schema Registry Cluster Environment Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Package string
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- Region
Pulumi.
Confluent Cloud. Inputs. Schema Registry Cluster Region
- Environment
Schema
Registry Cluster Environment Args Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Package string
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- Region
Schema
Registry Cluster Region Args
- environment
Schema
Registry Cluster Environment Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- package_ String
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- region
Schema
Registry Cluster Region
- environment
Schema
Registry Cluster Environment Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- package string
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- region
Schema
Registry Cluster Region
- environment
Schema
Registry Cluster Environment Args Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- package str
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- region
Schema
Registry Cluster Region Args
- environment Property Map
Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- package String
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- region Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the SchemaRegistryCluster resource produces the following output properties:
- Api
Version string (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- Display
Name string (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- Id string
The provider-assigned unique ID for this managed resource.
- Kind string
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- Resource
Name string (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- Rest
Endpoint string (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- Api
Version string (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- Display
Name string (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- Id string
The provider-assigned unique ID for this managed resource.
- Kind string
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- Resource
Name string (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- Rest
Endpoint string (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- api
Version String (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- display
Name String (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- id String
The provider-assigned unique ID for this managed resource.
- kind String
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- resource
Name String (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- rest
Endpoint String (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- api
Version string (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- display
Name string (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- id string
The provider-assigned unique ID for this managed resource.
- kind string
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- resource
Name string (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- rest
Endpoint string (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- api_
version str (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- display_
name str (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- id str
The provider-assigned unique ID for this managed resource.
- kind str
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- resource_
name str (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- rest_
endpoint str (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- api
Version String (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- display
Name String (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- id String
The provider-assigned unique ID for this managed resource.
- kind String
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- resource
Name String (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- rest
Endpoint String (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
Look up Existing SchemaRegistryCluster Resource
Get an existing SchemaRegistryCluster 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?: SchemaRegistryClusterState, opts?: CustomResourceOptions): SchemaRegistryCluster
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_version: Optional[str] = None,
display_name: Optional[str] = None,
environment: Optional[SchemaRegistryClusterEnvironmentArgs] = None,
kind: Optional[str] = None,
package: Optional[str] = None,
region: Optional[SchemaRegistryClusterRegionArgs] = None,
resource_name: Optional[str] = None,
rest_endpoint: Optional[str] = None) -> SchemaRegistryCluster
func GetSchemaRegistryCluster(ctx *Context, name string, id IDInput, state *SchemaRegistryClusterState, opts ...ResourceOption) (*SchemaRegistryCluster, error)
public static SchemaRegistryCluster Get(string name, Input<string> id, SchemaRegistryClusterState? state, CustomResourceOptions? opts = null)
public static SchemaRegistryCluster get(String name, Output<String> id, SchemaRegistryClusterState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Api
Version string (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- Display
Name string (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- Environment
Pulumi.
Confluent Cloud. Inputs. Schema Registry Cluster Environment Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Kind string
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- Package string
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- Region
Pulumi.
Confluent Cloud. Inputs. Schema Registry Cluster Region - Resource
Name string (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- Rest
Endpoint string (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- Api
Version string (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- Display
Name string (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- Environment
Schema
Registry Cluster Environment Args Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Kind string
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- Package string
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- Region
Schema
Registry Cluster Region Args - Resource
Name string (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- Rest
Endpoint string (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- api
Version String (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- display
Name String (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- environment
Schema
Registry Cluster Environment Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kind String
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- package_ String
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- region
Schema
Registry Cluster Region - resource
Name String (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- rest
Endpoint String (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- api
Version string (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- display
Name string (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- environment
Schema
Registry Cluster Environment Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kind string
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- package string
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- region
Schema
Registry Cluster Region - resource
Name string (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- rest
Endpoint string (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- api_
version str (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- display_
name str (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- environment
Schema
Registry Cluster Environment Args Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kind str
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- package str
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- region
Schema
Registry Cluster Region Args - resource_
name str (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- rest_
endpoint str (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
- api
Version String (Required String) An API Version of the schema version of the Schema Registry cluster, for example,
srcm/v2
.- display
Name String (Required String) The name of the Schema Registry cluster, for example,
Stream Governance Package
.- environment Property Map
Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kind String
(Required String) A kind of the Schema Registry cluster, for example,
Cluster
.- package String
The type of the billing package. Accepted values are:
ESSENTIALS
andADVANCED
.- region Property Map
- resource
Name String (Required String) The Confluent Resource Name of the Schema Registry cluster, for example,
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123
.- rest
Endpoint String (Required String) The HTTP endpoint of the Schema Registry cluster, for example,
https://psrc-00000.us-west-2.aws.confluent.cloud
.
Supporting Types
SchemaRegistryClusterEnvironment, SchemaRegistryClusterEnvironmentArgs
- Id string
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- Id string
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- id String
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- id string
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- id str
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- id String
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
SchemaRegistryClusterRegion, SchemaRegistryClusterRegionArgs
- Id string
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- Id string
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- id String
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- id string
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- id str
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
- id String
The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example,
sgreg-1
. See Schema Registry Regions to find a corresponding region ID based on desired cloud provider region and types of the billing package.
Package Details
- Repository
- Confluent Cloud pulumi/pulumi-confluentcloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
confluent
Terraform Provider.