You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"oci_streaming_stream_pool" {
source="./modules/oci/r/oci_streaming_stream_pool"# compartment_id - (required) is a type of stringcompartment_id=null# defined_tags - (optional) is a type of map of stringdefined_tags={}
# freeform_tags - (optional) is a type of map of stringfreeform_tags={}
# name - (required) is a type of stringname=nullcustom_encryption_key=[{
key_state =null
kms_key_id =null
}]
kafka_settings=[{
auto_create_topics_enable =null
bootstrap_servers =null
log_retention_hours =null
num_partitions =null
}]
private_endpoint_settings=[{
nsg_ids = []
private_endpoint_ip =null
subnet_id =null
}]
timeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_streaming_stream_pool""this" {
# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# defined_tags - (optional) is a type of map of stringdefined_tags=var.defined_tags# freeform_tags - (optional) is a type of map of stringfreeform_tags=var.freeform_tags# name - (required) is a type of stringname=var.namedynamic"custom_encryption_key" {
for_each=var.custom_encryption_keycontent {
# kms_key_id - (required) is a type of stringkms_key_id=custom_encryption_key.value["kms_key_id"]
}
}
dynamic"kafka_settings" {
for_each=var.kafka_settingscontent {
# auto_create_topics_enable - (optional) is a type of boolauto_create_topics_enable=kafka_settings.value["auto_create_topics_enable"]
# log_retention_hours - (optional) is a type of numberlog_retention_hours=kafka_settings.value["log_retention_hours"]
# num_partitions - (optional) is a type of numbernum_partitions=kafka_settings.value["num_partitions"]
}
}
dynamic"private_endpoint_settings" {
for_each=var.private_endpoint_settingscontent {
# nsg_ids - (optional) is a type of set of stringnsg_ids=private_endpoint_settings.value["nsg_ids"]
# private_endpoint_ip - (optional) is a type of stringprivate_endpoint_ip=private_endpoint_settings.value["private_endpoint_ip"]
# subnet_id - (optional) is a type of stringsubnet_id=private_endpoint_settings.value["subnet_id"]
}
}
dynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}