1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. ManagedKafkaKafkaCluster
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testKafkaCluster = new oci.oci.ManagedKafkaKafkaCluster("test_kafka_cluster", {
        accessSubnets: [{
            subnets: kafkaClusterAccessSubnetsSubnets,
        }],
        brokerShape: {
            nodeCount: kafkaClusterBrokerShapeNodeCount,
            ocpuCount: kafkaClusterBrokerShapeOcpuCount,
            storageSizeInGbs: kafkaClusterBrokerShapeStorageSizeInGbs,
        },
        clusterConfigId: testConfig.id,
        clusterConfigVersion: kafkaClusterClusterConfigVersion,
        clusterType: kafkaClusterClusterType,
        compartmentId: compartmentId,
        coordinationType: kafkaClusterCoordinationType,
        kafkaVersion: kafkaClusterKafkaVersion,
        clientCertificateBundle: kafkaClusterClientCertificateBundle,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        displayName: kafkaClusterDisplayName,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_kafka_cluster = oci.oci.ManagedKafkaKafkaCluster("test_kafka_cluster",
        access_subnets=[{
            "subnets": kafka_cluster_access_subnets_subnets,
        }],
        broker_shape={
            "node_count": kafka_cluster_broker_shape_node_count,
            "ocpu_count": kafka_cluster_broker_shape_ocpu_count,
            "storage_size_in_gbs": kafka_cluster_broker_shape_storage_size_in_gbs,
        },
        cluster_config_id=test_config["id"],
        cluster_config_version=kafka_cluster_cluster_config_version,
        cluster_type=kafka_cluster_cluster_type,
        compartment_id=compartment_id,
        coordination_type=kafka_cluster_coordination_type,
        kafka_version=kafka_cluster_kafka_version,
        client_certificate_bundle=kafka_cluster_client_certificate_bundle,
        defined_tags={
            "Operations.CostCenter": "42",
        },
        display_name=kafka_cluster_display_name,
        freeform_tags={
            "Department": "Finance",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.NewManagedKafkaKafkaCluster(ctx, "test_kafka_cluster", &oci.ManagedKafkaKafkaClusterArgs{
    			AccessSubnets: oci.ManagedKafkaKafkaClusterAccessSubnetArray{
    				&oci.ManagedKafkaKafkaClusterAccessSubnetArgs{
    					Subnets: pulumi.Any(kafkaClusterAccessSubnetsSubnets),
    				},
    			},
    			BrokerShape: &oci.ManagedKafkaKafkaClusterBrokerShapeArgs{
    				NodeCount:        pulumi.Any(kafkaClusterBrokerShapeNodeCount),
    				OcpuCount:        pulumi.Any(kafkaClusterBrokerShapeOcpuCount),
    				StorageSizeInGbs: pulumi.Any(kafkaClusterBrokerShapeStorageSizeInGbs),
    			},
    			ClusterConfigId:         pulumi.Any(testConfig.Id),
    			ClusterConfigVersion:    pulumi.Any(kafkaClusterClusterConfigVersion),
    			ClusterType:             pulumi.Any(kafkaClusterClusterType),
    			CompartmentId:           pulumi.Any(compartmentId),
    			CoordinationType:        pulumi.Any(kafkaClusterCoordinationType),
    			KafkaVersion:            pulumi.Any(kafkaClusterKafkaVersion),
    			ClientCertificateBundle: pulumi.Any(kafkaClusterClientCertificateBundle),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			DisplayName: pulumi.Any(kafkaClusterDisplayName),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testKafkaCluster = new Oci.Oci.ManagedKafkaKafkaCluster("test_kafka_cluster", new()
        {
            AccessSubnets = new[]
            {
                new Oci.Oci.Inputs.ManagedKafkaKafkaClusterAccessSubnetArgs
                {
                    Subnets = kafkaClusterAccessSubnetsSubnets,
                },
            },
            BrokerShape = new Oci.Oci.Inputs.ManagedKafkaKafkaClusterBrokerShapeArgs
            {
                NodeCount = kafkaClusterBrokerShapeNodeCount,
                OcpuCount = kafkaClusterBrokerShapeOcpuCount,
                StorageSizeInGbs = kafkaClusterBrokerShapeStorageSizeInGbs,
            },
            ClusterConfigId = testConfig.Id,
            ClusterConfigVersion = kafkaClusterClusterConfigVersion,
            ClusterType = kafkaClusterClusterType,
            CompartmentId = compartmentId,
            CoordinationType = kafkaClusterCoordinationType,
            KafkaVersion = kafkaClusterKafkaVersion,
            ClientCertificateBundle = kafkaClusterClientCertificateBundle,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            DisplayName = kafkaClusterDisplayName,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.ManagedKafkaKafkaCluster;
    import com.pulumi.oci.oci.ManagedKafkaKafkaClusterArgs;
    import com.pulumi.oci.oci.inputs.ManagedKafkaKafkaClusterAccessSubnetArgs;
    import com.pulumi.oci.oci.inputs.ManagedKafkaKafkaClusterBrokerShapeArgs;
    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 testKafkaCluster = new ManagedKafkaKafkaCluster("testKafkaCluster", ManagedKafkaKafkaClusterArgs.builder()
                .accessSubnets(ManagedKafkaKafkaClusterAccessSubnetArgs.builder()
                    .subnets(kafkaClusterAccessSubnetsSubnets)
                    .build())
                .brokerShape(ManagedKafkaKafkaClusterBrokerShapeArgs.builder()
                    .nodeCount(kafkaClusterBrokerShapeNodeCount)
                    .ocpuCount(kafkaClusterBrokerShapeOcpuCount)
                    .storageSizeInGbs(kafkaClusterBrokerShapeStorageSizeInGbs)
                    .build())
                .clusterConfigId(testConfig.id())
                .clusterConfigVersion(kafkaClusterClusterConfigVersion)
                .clusterType(kafkaClusterClusterType)
                .compartmentId(compartmentId)
                .coordinationType(kafkaClusterCoordinationType)
                .kafkaVersion(kafkaClusterKafkaVersion)
                .clientCertificateBundle(kafkaClusterClientCertificateBundle)
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .displayName(kafkaClusterDisplayName)
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testKafkaCluster:
        type: oci:oci:ManagedKafkaKafkaCluster
        name: test_kafka_cluster
        properties:
          accessSubnets:
            - subnets: ${kafkaClusterAccessSubnetsSubnets}
          brokerShape:
            nodeCount: ${kafkaClusterBrokerShapeNodeCount}
            ocpuCount: ${kafkaClusterBrokerShapeOcpuCount}
            storageSizeInGbs: ${kafkaClusterBrokerShapeStorageSizeInGbs}
          clusterConfigId: ${testConfig.id}
          clusterConfigVersion: ${kafkaClusterClusterConfigVersion}
          clusterType: ${kafkaClusterClusterType}
          compartmentId: ${compartmentId}
          coordinationType: ${kafkaClusterCoordinationType}
          kafkaVersion: ${kafkaClusterKafkaVersion}
          clientCertificateBundle: ${kafkaClusterClientCertificateBundle}
          definedTags:
            Operations.CostCenter: '42'
          displayName: ${kafkaClusterDisplayName}
          freeformTags:
            Department: Finance
    

    Create ManagedKafkaKafkaCluster Resource

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

    Constructor syntax

    new ManagedKafkaKafkaCluster(name: string, args: ManagedKafkaKafkaClusterArgs, opts?: CustomResourceOptions);
    @overload
    def ManagedKafkaKafkaCluster(resource_name: str,
                                 args: ManagedKafkaKafkaClusterArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagedKafkaKafkaCluster(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 access_subnets: Optional[Sequence[ManagedKafkaKafkaClusterAccessSubnetArgs]] = None,
                                 broker_shape: Optional[ManagedKafkaKafkaClusterBrokerShapeArgs] = None,
                                 cluster_config_id: Optional[str] = None,
                                 cluster_config_version: Optional[int] = None,
                                 cluster_type: Optional[str] = None,
                                 compartment_id: Optional[str] = None,
                                 coordination_type: Optional[str] = None,
                                 kafka_version: Optional[str] = None,
                                 client_certificate_bundle: Optional[str] = None,
                                 defined_tags: Optional[Mapping[str, str]] = None,
                                 display_name: Optional[str] = None,
                                 freeform_tags: Optional[Mapping[str, str]] = None)
    func NewManagedKafkaKafkaCluster(ctx *Context, name string, args ManagedKafkaKafkaClusterArgs, opts ...ResourceOption) (*ManagedKafkaKafkaCluster, error)
    public ManagedKafkaKafkaCluster(string name, ManagedKafkaKafkaClusterArgs args, CustomResourceOptions? opts = null)
    public ManagedKafkaKafkaCluster(String name, ManagedKafkaKafkaClusterArgs args)
    public ManagedKafkaKafkaCluster(String name, ManagedKafkaKafkaClusterArgs args, CustomResourceOptions options)
    
    type: oci:oci:ManagedKafkaKafkaCluster
    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 ManagedKafkaKafkaClusterArgs
    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 ManagedKafkaKafkaClusterArgs
    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 ManagedKafkaKafkaClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagedKafkaKafkaClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagedKafkaKafkaClusterArgs
    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 managedKafkaKafkaClusterResource = new Oci.Oci.ManagedKafkaKafkaCluster("managedKafkaKafkaClusterResource", new()
    {
        AccessSubnets = new[]
        {
            new Oci.Oci.Inputs.ManagedKafkaKafkaClusterAccessSubnetArgs
            {
                Subnets = new[]
                {
                    "string",
                },
            },
        },
        BrokerShape = new Oci.Oci.Inputs.ManagedKafkaKafkaClusterBrokerShapeArgs
        {
            NodeCount = 0,
            OcpuCount = 0,
            StorageSizeInGbs = 0,
        },
        ClusterConfigId = "string",
        ClusterConfigVersion = 0,
        ClusterType = "string",
        CompartmentId = "string",
        CoordinationType = "string",
        KafkaVersion = "string",
        ClientCertificateBundle = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := oci.NewManagedKafkaKafkaCluster(ctx, "managedKafkaKafkaClusterResource", &oci.ManagedKafkaKafkaClusterArgs{
    	AccessSubnets: oci.ManagedKafkaKafkaClusterAccessSubnetArray{
    		&oci.ManagedKafkaKafkaClusterAccessSubnetArgs{
    			Subnets: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	BrokerShape: &oci.ManagedKafkaKafkaClusterBrokerShapeArgs{
    		NodeCount:        pulumi.Int(0),
    		OcpuCount:        pulumi.Int(0),
    		StorageSizeInGbs: pulumi.Int(0),
    	},
    	ClusterConfigId:         pulumi.String("string"),
    	ClusterConfigVersion:    pulumi.Int(0),
    	ClusterType:             pulumi.String("string"),
    	CompartmentId:           pulumi.String("string"),
    	CoordinationType:        pulumi.String("string"),
    	KafkaVersion:            pulumi.String("string"),
    	ClientCertificateBundle: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var managedKafkaKafkaClusterResource = new ManagedKafkaKafkaCluster("managedKafkaKafkaClusterResource", ManagedKafkaKafkaClusterArgs.builder()
        .accessSubnets(ManagedKafkaKafkaClusterAccessSubnetArgs.builder()
            .subnets("string")
            .build())
        .brokerShape(ManagedKafkaKafkaClusterBrokerShapeArgs.builder()
            .nodeCount(0)
            .ocpuCount(0)
            .storageSizeInGbs(0)
            .build())
        .clusterConfigId("string")
        .clusterConfigVersion(0)
        .clusterType("string")
        .compartmentId("string")
        .coordinationType("string")
        .kafkaVersion("string")
        .clientCertificateBundle("string")
        .definedTags(Map.of("string", "string"))
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .build());
    
    managed_kafka_kafka_cluster_resource = oci.oci.ManagedKafkaKafkaCluster("managedKafkaKafkaClusterResource",
        access_subnets=[{
            "subnets": ["string"],
        }],
        broker_shape={
            "node_count": 0,
            "ocpu_count": 0,
            "storage_size_in_gbs": 0,
        },
        cluster_config_id="string",
        cluster_config_version=0,
        cluster_type="string",
        compartment_id="string",
        coordination_type="string",
        kafka_version="string",
        client_certificate_bundle="string",
        defined_tags={
            "string": "string",
        },
        display_name="string",
        freeform_tags={
            "string": "string",
        })
    
    const managedKafkaKafkaClusterResource = new oci.oci.ManagedKafkaKafkaCluster("managedKafkaKafkaClusterResource", {
        accessSubnets: [{
            subnets: ["string"],
        }],
        brokerShape: {
            nodeCount: 0,
            ocpuCount: 0,
            storageSizeInGbs: 0,
        },
        clusterConfigId: "string",
        clusterConfigVersion: 0,
        clusterType: "string",
        compartmentId: "string",
        coordinationType: "string",
        kafkaVersion: "string",
        clientCertificateBundle: "string",
        definedTags: {
            string: "string",
        },
        displayName: "string",
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:oci:ManagedKafkaKafkaCluster
    properties:
        accessSubnets:
            - subnets:
                - string
        brokerShape:
            nodeCount: 0
            ocpuCount: 0
            storageSizeInGbs: 0
        clientCertificateBundle: string
        clusterConfigId: string
        clusterConfigVersion: 0
        clusterType: string
        compartmentId: string
        coordinationType: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        kafkaVersion: string
    

    ManagedKafkaKafkaCluster 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 ManagedKafkaKafkaCluster resource accepts the following input properties:

    AccessSubnets List<ManagedKafkaKafkaClusterAccessSubnet>
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    BrokerShape ManagedKafkaKafkaClusterBrokerShape
    (Updatable) Configuration of the broker node.
    ClusterConfigId string
    (Updatable) The OCID of Kafka Cluster configuration object
    ClusterConfigVersion int
    (Updatable) The version of configuration object
    ClusterType string
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    CompartmentId string
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    CoordinationType string
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    KafkaVersion string

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    ClientCertificateBundle string
    (Updatable) CA certificate bundle for mTLS broker authentication.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    AccessSubnets []ManagedKafkaKafkaClusterAccessSubnetArgs
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    BrokerShape ManagedKafkaKafkaClusterBrokerShapeArgs
    (Updatable) Configuration of the broker node.
    ClusterConfigId string
    (Updatable) The OCID of Kafka Cluster configuration object
    ClusterConfigVersion int
    (Updatable) The version of configuration object
    ClusterType string
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    CompartmentId string
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    CoordinationType string
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    KafkaVersion string

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    ClientCertificateBundle string
    (Updatable) CA certificate bundle for mTLS broker authentication.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    accessSubnets List<ManagedKafkaKafkaClusterAccessSubnet>
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    brokerShape ManagedKafkaKafkaClusterBrokerShape
    (Updatable) Configuration of the broker node.
    clusterConfigId String
    (Updatable) The OCID of Kafka Cluster configuration object
    clusterConfigVersion Integer
    (Updatable) The version of configuration object
    clusterType String
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    compartmentId String
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    coordinationType String
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    kafkaVersion String

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    clientCertificateBundle String
    (Updatable) CA certificate bundle for mTLS broker authentication.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    accessSubnets ManagedKafkaKafkaClusterAccessSubnet[]
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    brokerShape ManagedKafkaKafkaClusterBrokerShape
    (Updatable) Configuration of the broker node.
    clusterConfigId string
    (Updatable) The OCID of Kafka Cluster configuration object
    clusterConfigVersion number
    (Updatable) The version of configuration object
    clusterType string
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    compartmentId string
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    coordinationType string
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    kafkaVersion string

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    clientCertificateBundle string
    (Updatable) CA certificate bundle for mTLS broker authentication.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    access_subnets Sequence[ManagedKafkaKafkaClusterAccessSubnetArgs]
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    broker_shape ManagedKafkaKafkaClusterBrokerShapeArgs
    (Updatable) Configuration of the broker node.
    cluster_config_id str
    (Updatable) The OCID of Kafka Cluster configuration object
    cluster_config_version int
    (Updatable) The version of configuration object
    cluster_type str
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    compartment_id str
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    coordination_type str
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    kafka_version str

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    client_certificate_bundle str
    (Updatable) CA certificate bundle for mTLS broker authentication.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    accessSubnets List<Property Map>
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    brokerShape Property Map
    (Updatable) Configuration of the broker node.
    clusterConfigId String
    (Updatable) The OCID of Kafka Cluster configuration object
    clusterConfigVersion Number
    (Updatable) The version of configuration object
    clusterType String
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    compartmentId String
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    coordinationType String
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    kafkaVersion String

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    clientCertificateBundle String
    (Updatable) CA certificate bundle for mTLS broker authentication.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    KafkaBootstrapUrls List<ManagedKafkaKafkaClusterKafkaBootstrapUrl>
    Bootstrap URL that can be used to connect to Kafka
    LifecycleDetails string
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    SecretId string
    The OCID of the secret that contains superuser password.
    State string
    The current state of the KafkaCluster.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    Id string
    The provider-assigned unique ID for this managed resource.
    KafkaBootstrapUrls []ManagedKafkaKafkaClusterKafkaBootstrapUrl
    Bootstrap URL that can be used to connect to Kafka
    LifecycleDetails string
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    SecretId string
    The OCID of the secret that contains superuser password.
    State string
    The current state of the KafkaCluster.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    kafkaBootstrapUrls List<ManagedKafkaKafkaClusterKafkaBootstrapUrl>
    Bootstrap URL that can be used to connect to Kafka
    lifecycleDetails String
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secretId String
    The OCID of the secret that contains superuser password.
    state String
    The current state of the KafkaCluster.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id string
    The provider-assigned unique ID for this managed resource.
    kafkaBootstrapUrls ManagedKafkaKafkaClusterKafkaBootstrapUrl[]
    Bootstrap URL that can be used to connect to Kafka
    lifecycleDetails string
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secretId string
    The OCID of the secret that contains superuser password.
    state string
    The current state of the KafkaCluster.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id str
    The provider-assigned unique ID for this managed resource.
    kafka_bootstrap_urls Sequence[ManagedKafkaKafkaClusterKafkaBootstrapUrl]
    Bootstrap URL that can be used to connect to Kafka
    lifecycle_details str
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secret_id str
    The OCID of the secret that contains superuser password.
    state str
    The current state of the KafkaCluster.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    kafkaBootstrapUrls List<Property Map>
    Bootstrap URL that can be used to connect to Kafka
    lifecycleDetails String
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secretId String
    The OCID of the secret that contains superuser password.
    state String
    The current state of the KafkaCluster.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    Look up Existing ManagedKafkaKafkaCluster Resource

    Get an existing ManagedKafkaKafkaCluster 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?: ManagedKafkaKafkaClusterState, opts?: CustomResourceOptions): ManagedKafkaKafkaCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_subnets: Optional[Sequence[ManagedKafkaKafkaClusterAccessSubnetArgs]] = None,
            broker_shape: Optional[ManagedKafkaKafkaClusterBrokerShapeArgs] = None,
            client_certificate_bundle: Optional[str] = None,
            cluster_config_id: Optional[str] = None,
            cluster_config_version: Optional[int] = None,
            cluster_type: Optional[str] = None,
            compartment_id: Optional[str] = None,
            coordination_type: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            kafka_bootstrap_urls: Optional[Sequence[ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs]] = None,
            kafka_version: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            secret_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> ManagedKafkaKafkaCluster
    func GetManagedKafkaKafkaCluster(ctx *Context, name string, id IDInput, state *ManagedKafkaKafkaClusterState, opts ...ResourceOption) (*ManagedKafkaKafkaCluster, error)
    public static ManagedKafkaKafkaCluster Get(string name, Input<string> id, ManagedKafkaKafkaClusterState? state, CustomResourceOptions? opts = null)
    public static ManagedKafkaKafkaCluster get(String name, Output<String> id, ManagedKafkaKafkaClusterState state, CustomResourceOptions options)
    resources:  _:    type: oci:oci:ManagedKafkaKafkaCluster    get:      id: ${id}
    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.
    The following state arguments are supported:
    AccessSubnets List<ManagedKafkaKafkaClusterAccessSubnet>
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    BrokerShape ManagedKafkaKafkaClusterBrokerShape
    (Updatable) Configuration of the broker node.
    ClientCertificateBundle string
    (Updatable) CA certificate bundle for mTLS broker authentication.
    ClusterConfigId string
    (Updatable) The OCID of Kafka Cluster configuration object
    ClusterConfigVersion int
    (Updatable) The version of configuration object
    ClusterType string
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    CompartmentId string
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    CoordinationType string
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    KafkaBootstrapUrls List<ManagedKafkaKafkaClusterKafkaBootstrapUrl>
    Bootstrap URL that can be used to connect to Kafka
    KafkaVersion string

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    LifecycleDetails string
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    SecretId string
    The OCID of the secret that contains superuser password.
    State string
    The current state of the KafkaCluster.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    AccessSubnets []ManagedKafkaKafkaClusterAccessSubnetArgs
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    BrokerShape ManagedKafkaKafkaClusterBrokerShapeArgs
    (Updatable) Configuration of the broker node.
    ClientCertificateBundle string
    (Updatable) CA certificate bundle for mTLS broker authentication.
    ClusterConfigId string
    (Updatable) The OCID of Kafka Cluster configuration object
    ClusterConfigVersion int
    (Updatable) The version of configuration object
    ClusterType string
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    CompartmentId string
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    CoordinationType string
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    KafkaBootstrapUrls []ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs
    Bootstrap URL that can be used to connect to Kafka
    KafkaVersion string

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    LifecycleDetails string
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    SecretId string
    The OCID of the secret that contains superuser password.
    State string
    The current state of the KafkaCluster.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    accessSubnets List<ManagedKafkaKafkaClusterAccessSubnet>
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    brokerShape ManagedKafkaKafkaClusterBrokerShape
    (Updatable) Configuration of the broker node.
    clientCertificateBundle String
    (Updatable) CA certificate bundle for mTLS broker authentication.
    clusterConfigId String
    (Updatable) The OCID of Kafka Cluster configuration object
    clusterConfigVersion Integer
    (Updatable) The version of configuration object
    clusterType String
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    compartmentId String
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    coordinationType String
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kafkaBootstrapUrls List<ManagedKafkaKafkaClusterKafkaBootstrapUrl>
    Bootstrap URL that can be used to connect to Kafka
    kafkaVersion String

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    lifecycleDetails String
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secretId String
    The OCID of the secret that contains superuser password.
    state String
    The current state of the KafkaCluster.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    accessSubnets ManagedKafkaKafkaClusterAccessSubnet[]
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    brokerShape ManagedKafkaKafkaClusterBrokerShape
    (Updatable) Configuration of the broker node.
    clientCertificateBundle string
    (Updatable) CA certificate bundle for mTLS broker authentication.
    clusterConfigId string
    (Updatable) The OCID of Kafka Cluster configuration object
    clusterConfigVersion number
    (Updatable) The version of configuration object
    clusterType string
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    compartmentId string
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    coordinationType string
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kafkaBootstrapUrls ManagedKafkaKafkaClusterKafkaBootstrapUrl[]
    Bootstrap URL that can be used to connect to Kafka
    kafkaVersion string

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    lifecycleDetails string
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secretId string
    The OCID of the secret that contains superuser password.
    state string
    The current state of the KafkaCluster.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    access_subnets Sequence[ManagedKafkaKafkaClusterAccessSubnetArgs]
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    broker_shape ManagedKafkaKafkaClusterBrokerShapeArgs
    (Updatable) Configuration of the broker node.
    client_certificate_bundle str
    (Updatable) CA certificate bundle for mTLS broker authentication.
    cluster_config_id str
    (Updatable) The OCID of Kafka Cluster configuration object
    cluster_config_version int
    (Updatable) The version of configuration object
    cluster_type str
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    compartment_id str
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    coordination_type str
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kafka_bootstrap_urls Sequence[ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs]
    Bootstrap URL that can be used to connect to Kafka
    kafka_version str

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    lifecycle_details str
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secret_id str
    The OCID of the secret that contains superuser password.
    state str
    The current state of the KafkaCluster.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    accessSubnets List<Property Map>
    (Updatable) Subnets where broker/coordinator VNICs will be created.
    brokerShape Property Map
    (Updatable) Configuration of the broker node.
    clientCertificateBundle String
    (Updatable) CA certificate bundle for mTLS broker authentication.
    clusterConfigId String
    (Updatable) The OCID of Kafka Cluster configuration object
    clusterConfigVersion Number
    (Updatable) The version of configuration object
    clusterType String
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
    compartmentId String
    (Updatable) The OCID of the compartment to create the KafkaCluster in.
    coordinationType String
    (Updatable) Kafka coordination type. Set of available types depends on Kafka version
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    kafkaBootstrapUrls List<Property Map>
    Bootstrap URL that can be used to connect to Kafka
    kafkaVersion String

    Version of Kafka to use to spin up the cluster

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    lifecycleDetails String
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secretId String
    The OCID of the secret that contains superuser password.
    state String
    The current state of the KafkaCluster.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    Supporting Types

    ManagedKafkaKafkaClusterAccessSubnet, ManagedKafkaKafkaClusterAccessSubnetArgs

    Subnets List<string>
    (Updatable) Subnets OCIDs
    Subnets []string
    (Updatable) Subnets OCIDs
    subnets List<String>
    (Updatable) Subnets OCIDs
    subnets string[]
    (Updatable) Subnets OCIDs
    subnets Sequence[str]
    (Updatable) Subnets OCIDs
    subnets List<String>
    (Updatable) Subnets OCIDs

    ManagedKafkaKafkaClusterBrokerShape, ManagedKafkaKafkaClusterBrokerShapeArgs

    NodeCount int
    (Updatable) Number of Kafka broker nodes
    OcpuCount int
    (Updatable) Number of OCPUs per nodes
    StorageSizeInGbs int
    (Updatable) Size of the storage per nodes.
    NodeCount int
    (Updatable) Number of Kafka broker nodes
    OcpuCount int
    (Updatable) Number of OCPUs per nodes
    StorageSizeInGbs int
    (Updatable) Size of the storage per nodes.
    nodeCount Integer
    (Updatable) Number of Kafka broker nodes
    ocpuCount Integer
    (Updatable) Number of OCPUs per nodes
    storageSizeInGbs Integer
    (Updatable) Size of the storage per nodes.
    nodeCount number
    (Updatable) Number of Kafka broker nodes
    ocpuCount number
    (Updatable) Number of OCPUs per nodes
    storageSizeInGbs number
    (Updatable) Size of the storage per nodes.
    node_count int
    (Updatable) Number of Kafka broker nodes
    ocpu_count int
    (Updatable) Number of OCPUs per nodes
    storage_size_in_gbs int
    (Updatable) Size of the storage per nodes.
    nodeCount Number
    (Updatable) Number of Kafka broker nodes
    ocpuCount Number
    (Updatable) Number of OCPUs per nodes
    storageSizeInGbs Number
    (Updatable) Size of the storage per nodes.

    ManagedKafkaKafkaClusterKafkaBootstrapUrl, ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs

    Name string
    Name of the Kafka listener providing this bootstrap URL
    Url string
    Bootstrap URL
    Name string
    Name of the Kafka listener providing this bootstrap URL
    Url string
    Bootstrap URL
    name String
    Name of the Kafka listener providing this bootstrap URL
    url String
    Bootstrap URL
    name string
    Name of the Kafka listener providing this bootstrap URL
    url string
    Bootstrap URL
    name str
    Name of the Kafka listener providing this bootstrap URL
    url str
    Bootstrap URL
    name String
    Name of the Kafka listener providing this bootstrap URL
    url String
    Bootstrap URL

    Import

    KafkaClusters can be imported using the id, e.g.

    $ pulumi import oci:oci/managedKafkaKafkaCluster:ManagedKafkaKafkaCluster test_kafka_cluster "id"
    

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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate