Getting Details for a Stream Pool

Get the details for a stream pool in the Streaming service. Stream pool details include encryption and Kafka Connect settings.

Using Resource Manager and Terraform

Use the oci_streaming_stream_pool data source to get the details for a stream pool.

For example:

data "oci_streaming_stream_pool" "test_stream_pool" {
    #Required
    stream_pool_id = oci_streaming_stream_pool.test_stream_pool.id
}