oci_managed_kafka_kafka_cluster_addon

This resource provides the Kafka Cluster Addon resource in Oracle Cloud Infrastructure Managed Kafka service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/kafka/latest/Addon

Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/managed_kafka

Installs a KafkaClusterAddon.

Example Usage

resource "oci_managed_kafka_kafka_cluster_addon" "test_kafka_cluster_addon" {
	#Required
	addon_type = var.kafka_cluster_addon_addon_type
	authentication_mechanism = var.kafka_cluster_addon_authentication_mechanism
	kafka_cluster_id = oci_managed_kafka_kafka_cluster.test_kafka_cluster.id
	name = var.kafka_cluster_addon_name
	network_cidrs = var.kafka_cluster_addon_network_cidrs

	#Optional
	description = var.kafka_cluster_addon_description
}

Argument Reference

The following arguments are supported:

** 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

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain operations: * create - (Defaults to 20 minutes), when creating the Kafka Cluster Addon * update - (Defaults to 20 minutes), when updating the Kafka Cluster Addon * delete - (Defaults to 20 minutes), when destroying the Kafka Cluster Addon

Import

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

$ terraform import oci_managed_kafka_kafka_cluster_addon.test_kafka_cluster_addon "kafkaClusters/{kafkaClusterId}/addons/{addonName}"