confluentcloud.KsqlCluster
Explore with Pulumi AI
# confluentcloud.KsqlCluster Resource
!> Warning: It is strongly recommended that you provision a data.confluent_schema_registry_cluster
resource before you provision a confluentcloud.KsqlCluster
resource in a given environment. If you’re provisioning the data.confluent_schema_registry_cluster
and the confluentcloud.KsqlCluster
resource in the same pulumi up command, reference the data.confluent_schema_registry_cluster
from the depends_on
argument inside the confluentcloud.KsqlCluster
resource. This ensures that the data.confluent_schema_registry_cluster
resource is created before the confluentcloud.KsqlCluster
resource. If you provision a confluentcloud.KsqlCluster
resource without a data.confluent_schema_registry_cluster
resource, and later, you want to add a data.confluent_schema_registry_cluster
resource, you must destroy and re-create your confluentcloud.KsqlCluster
resource after provisioning a data.confluent_schema_registry_cluster
resource.
confluentcloud.KsqlCluster
provides a ksqlDB cluster resource that enables creating, editing, and deleting ksqlDB clusters on Confluent Cloud.
Create KsqlCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KsqlCluster(name: string, args: KsqlClusterArgs, opts?: CustomResourceOptions);
@overload
def KsqlCluster(resource_name: str,
args: KsqlClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KsqlCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
credential_identity: Optional[KsqlClusterCredentialIdentityArgs] = None,
csu: Optional[int] = None,
display_name: Optional[str] = None,
environment: Optional[KsqlClusterEnvironmentArgs] = None,
kafka_cluster: Optional[KsqlClusterKafkaClusterArgs] = None,
use_detailed_processing_log: Optional[bool] = None)
func NewKsqlCluster(ctx *Context, name string, args KsqlClusterArgs, opts ...ResourceOption) (*KsqlCluster, error)
public KsqlCluster(string name, KsqlClusterArgs args, CustomResourceOptions? opts = null)
public KsqlCluster(String name, KsqlClusterArgs args)
public KsqlCluster(String name, KsqlClusterArgs args, CustomResourceOptions options)
type: confluentcloud:KsqlCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args KsqlClusterArgs
- 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 KsqlClusterArgs
- 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 KsqlClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KsqlClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KsqlClusterArgs
- 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 ksqlClusterResource = new ConfluentCloud.KsqlCluster("ksqlClusterResource", new()
{
CredentialIdentity = new ConfluentCloud.Inputs.KsqlClusterCredentialIdentityArgs
{
Id = "string",
},
Csu = 0,
DisplayName = "string",
Environment = new ConfluentCloud.Inputs.KsqlClusterEnvironmentArgs
{
Id = "string",
},
KafkaCluster = new ConfluentCloud.Inputs.KsqlClusterKafkaClusterArgs
{
Id = "string",
},
UseDetailedProcessingLog = false,
});
example, err := confluentcloud.NewKsqlCluster(ctx, "ksqlClusterResource", &confluentcloud.KsqlClusterArgs{
CredentialIdentity: &confluentcloud.KsqlClusterCredentialIdentityArgs{
Id: pulumi.String("string"),
},
Csu: pulumi.Int(0),
DisplayName: pulumi.String("string"),
Environment: &confluentcloud.KsqlClusterEnvironmentArgs{
Id: pulumi.String("string"),
},
KafkaCluster: &confluentcloud.KsqlClusterKafkaClusterArgs{
Id: pulumi.String("string"),
},
UseDetailedProcessingLog: pulumi.Bool(false),
})
var ksqlClusterResource = new KsqlCluster("ksqlClusterResource", KsqlClusterArgs.builder()
.credentialIdentity(KsqlClusterCredentialIdentityArgs.builder()
.id("string")
.build())
.csu(0)
.displayName("string")
.environment(KsqlClusterEnvironmentArgs.builder()
.id("string")
.build())
.kafkaCluster(KsqlClusterKafkaClusterArgs.builder()
.id("string")
.build())
.useDetailedProcessingLog(false)
.build());
ksql_cluster_resource = confluentcloud.KsqlCluster("ksqlClusterResource",
credential_identity={
"id": "string",
},
csu=0,
display_name="string",
environment={
"id": "string",
},
kafka_cluster={
"id": "string",
},
use_detailed_processing_log=False)
const ksqlClusterResource = new confluentcloud.KsqlCluster("ksqlClusterResource", {
credentialIdentity: {
id: "string",
},
csu: 0,
displayName: "string",
environment: {
id: "string",
},
kafkaCluster: {
id: "string",
},
useDetailedProcessingLog: false,
});
type: confluentcloud:KsqlCluster
properties:
credentialIdentity:
id: string
csu: 0
displayName: string
environment:
id: string
kafkaCluster:
id: string
useDetailedProcessingLog: false
KsqlCluster 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 KsqlCluster resource accepts the following input properties:
- Credential
Identity Pulumi.Confluent Cloud. Inputs. Ksql Cluster Credential Identity - Csu int
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- Display
Name string - The name of the ksqlDB cluster.
- Environment
Pulumi.
Confluent Cloud. Inputs. Ksql Cluster Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Kafka
Cluster Pulumi.Confluent Cloud. Inputs. Ksql Cluster Kafka Cluster - Use
Detailed boolProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- Credential
Identity KsqlCluster Credential Identity Args - Csu int
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- Display
Name string - The name of the ksqlDB cluster.
- Environment
Ksql
Cluster Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Kafka
Cluster KsqlCluster Kafka Cluster Args - Use
Detailed boolProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- credential
Identity KsqlCluster Credential Identity - csu Integer
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- display
Name String - The name of the ksqlDB cluster.
- environment
Ksql
Cluster Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kafka
Cluster KsqlCluster Kafka Cluster - use
Detailed BooleanProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- credential
Identity KsqlCluster Credential Identity - csu number
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- display
Name string - The name of the ksqlDB cluster.
- environment
Ksql
Cluster Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kafka
Cluster KsqlCluster Kafka Cluster - use
Detailed booleanProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- credential_
identity KsqlCluster Credential Identity Args - csu int
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- display_
name str - The name of the ksqlDB cluster.
- environment
Ksql
Cluster Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kafka_
cluster KsqlCluster Kafka Cluster Args - use_
detailed_ boolprocessing_ log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- credential
Identity Property Map - csu Number
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- display
Name String - The name of the ksqlDB cluster.
- environment Property Map
- Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kafka
Cluster Property Map - use
Detailed BooleanProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
Outputs
All input properties are implicitly available as output properties. Additionally, the KsqlCluster resource produces the following output properties:
- Api
Version string - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - Resource
Name string - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- Rest
Endpoint string - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - Storage int
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- Topic
Prefix string - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
.
- Api
Version string - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - Resource
Name string - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- Rest
Endpoint string - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - Storage int
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- Topic
Prefix string - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
.
- api
Version String - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - id String
- The provider-assigned unique ID for this managed resource.
- kind String
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - resource
Name String - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- rest
Endpoint String - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - storage Integer
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- topic
Prefix String - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
.
- api
Version string - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - id string
- The provider-assigned unique ID for this managed resource.
- kind string
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - resource
Name string - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- rest
Endpoint string - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - storage number
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- topic
Prefix string - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
.
- api_
version str - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - id str
- The provider-assigned unique ID for this managed resource.
- kind str
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - resource_
name str - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- rest_
endpoint str - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - storage int
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- topic_
prefix str - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
.
- api
Version String - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - id String
- The provider-assigned unique ID for this managed resource.
- kind String
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - resource
Name String - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- rest
Endpoint String - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - storage Number
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- topic
Prefix String - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
.
Look up Existing KsqlCluster Resource
Get an existing KsqlCluster 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?: KsqlClusterState, opts?: CustomResourceOptions): KsqlCluster
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_version: Optional[str] = None,
credential_identity: Optional[KsqlClusterCredentialIdentityArgs] = None,
csu: Optional[int] = None,
display_name: Optional[str] = None,
environment: Optional[KsqlClusterEnvironmentArgs] = None,
kafka_cluster: Optional[KsqlClusterKafkaClusterArgs] = None,
kind: Optional[str] = None,
resource_name: Optional[str] = None,
rest_endpoint: Optional[str] = None,
storage: Optional[int] = None,
topic_prefix: Optional[str] = None,
use_detailed_processing_log: Optional[bool] = None) -> KsqlCluster
func GetKsqlCluster(ctx *Context, name string, id IDInput, state *KsqlClusterState, opts ...ResourceOption) (*KsqlCluster, error)
public static KsqlCluster Get(string name, Input<string> id, KsqlClusterState? state, CustomResourceOptions? opts = null)
public static KsqlCluster get(String name, Output<String> id, KsqlClusterState 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 ksqlDB cluster, for example,
ksqldbcm/v2
. - Credential
Identity Pulumi.Confluent Cloud. Inputs. Ksql Cluster Credential Identity - Csu int
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- Display
Name string - The name of the ksqlDB cluster.
- Environment
Pulumi.
Confluent Cloud. Inputs. Ksql Cluster Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Kafka
Cluster Pulumi.Confluent Cloud. Inputs. Ksql Cluster Kafka Cluster - Kind string
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - Resource
Name string - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- Rest
Endpoint string - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - Storage int
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- Topic
Prefix string - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
. - Use
Detailed boolProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- Api
Version string - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - Credential
Identity KsqlCluster Credential Identity Args - Csu int
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- Display
Name string - The name of the ksqlDB cluster.
- Environment
Ksql
Cluster Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Kafka
Cluster KsqlCluster Kafka Cluster Args - Kind string
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - Resource
Name string - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- Rest
Endpoint string - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - Storage int
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- Topic
Prefix string - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
. - Use
Detailed boolProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- api
Version String - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - credential
Identity KsqlCluster Credential Identity - csu Integer
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- display
Name String - The name of the ksqlDB cluster.
- environment
Ksql
Cluster Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kafka
Cluster KsqlCluster Kafka Cluster - kind String
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - resource
Name String - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- rest
Endpoint String - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - storage Integer
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- topic
Prefix String - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
. - use
Detailed BooleanProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- api
Version string - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - credential
Identity KsqlCluster Credential Identity - csu number
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- display
Name string - The name of the ksqlDB cluster.
- environment
Ksql
Cluster Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kafka
Cluster KsqlCluster Kafka Cluster - kind string
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - resource
Name string - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- rest
Endpoint string - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - storage number
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- topic
Prefix string - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
. - use
Detailed booleanProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- api_
version str - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - credential_
identity KsqlCluster Credential Identity Args - csu int
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- display_
name str - The name of the ksqlDB cluster.
- environment
Ksql
Cluster Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kafka_
cluster KsqlCluster Kafka Cluster Args - kind str
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - resource_
name str - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- rest_
endpoint str - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - storage int
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- topic_
prefix str - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
. - use_
detailed_ boolprocessing_ log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
- api
Version String - (Required String) An API Version of the schema version of the ksqlDB cluster, for example,
ksqldbcm/v2
. - credential
Identity Property Map - csu Number
- The number of Confluent Streaming Units (CSUs) for the ksqlDB cluster.
- display
Name String - The name of the ksqlDB cluster.
- environment Property Map
- Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kafka
Cluster Property Map - kind String
- (Required String) A kind of the ksqlDB cluster, for example,
Cluster
. - resource
Name String - (Required String) The Confluent Resource Name of the ksqlDB cluster.
- rest
Endpoint String - (Required String) The API endpoint of the ksqlDB cluster, for example,
https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud
. - storage Number
- (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
- topic
Prefix String - (Required String) Topic name prefix used by this ksqlDB cluster. Used to assign ACLs for this ksqlDB cluster to use, for example,
pksqlc-00000
. - use
Detailed BooleanProcessing Log - Controls whether the row data should be included in the processing log topic. Set it to
false
if you don't want to emit sensitive information to the processing log. Defaults totrue
.
Supporting Types
KsqlClusterCredentialIdentity, KsqlClusterCredentialIdentityArgs
- Id string
- The ID of the associated service or user account, for example,
sa-abc123
.
- Id string
- The ID of the associated service or user account, for example,
sa-abc123
.
- id String
- The ID of the associated service or user account, for example,
sa-abc123
.
- id string
- The ID of the associated service or user account, for example,
sa-abc123
.
- id str
- The ID of the associated service or user account, for example,
sa-abc123
.
- id String
- The ID of the associated service or user account, for example,
sa-abc123
.
KsqlClusterEnvironment, KsqlClusterEnvironmentArgs
- Id string
- The ID of the associated Environment, for example,
env-xyz456
.
- Id string
- The ID of the associated Environment, for example,
env-xyz456
.
- id String
- The ID of the associated Environment, for example,
env-xyz456
.
- id string
- The ID of the associated Environment, for example,
env-xyz456
.
- id str
- The ID of the associated Environment, for example,
env-xyz456
.
- id String
- The ID of the associated Environment, for example,
env-xyz456
.
KsqlClusterKafkaCluster, KsqlClusterKafkaClusterArgs
- Id string
- The ID of the associated Kafka cluster, for example,
lkc-abc123
.
- Id string
- The ID of the associated Kafka cluster, for example,
lkc-abc123
.
- id String
- The ID of the associated Kafka cluster, for example,
lkc-abc123
.
- id string
- The ID of the associated Kafka cluster, for example,
lkc-abc123
.
- id str
- The ID of the associated Kafka cluster, for example,
lkc-abc123
.
- id String
- The ID of the associated Kafka cluster, for example,
lkc-abc123
.
Import
You can import a ksqlDB cluster by using Environment ID and ksqlDB cluster ID, in the format <Environment ID>/<ksqlDB cluster ID>
, for example:
$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"
$ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
$ pulumi import confluentcloud:index/ksqlCluster:KsqlCluster example env-abc123/lksqlc-abc123
!> Warning: Do not forget to delete the terminal’s command history afterward for security purposes.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Confluent Cloud pulumi/pulumi-confluentcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
confluent
Terraform Provider.