Provisioning StreamNative BYOC: Deploy Pulsar Instance and Pulsar Cluster using Terraform

Опубликовано: 26 Февраль 2026
на канале: StreamNative Academy
145
1

StreamNative Bring Your Own Cloud (BYOC) provides you with a fully managed Pulsar cluster in your own cloud account.

This video details how to create a Pulsar Instance and Pulsar Cluster using terraform. It is part of the playlist:
   • Provisioning StreamNative BYOC (Bring Your...  

Examples of creating a Pulsar Instance and Pulsar Cluster using terraform are available here:
https://github.com/streamnative/terra...

For pool_name use the Cloud Connection.

For pool_namespace use your StreamNative org.

Considers using a depends on field similar to below if you would like to combine the deployment of a Pulsar Instance and Pulsar Cluster into one main.tf file.

resource "xxx" "x1" {
depends_on = [
yyy.y1
]
}

Be sure to use gitignore on your security json if you will sync your code with GitHub.