Docs Cloud Deploy Dedicated Dedicated After you log in to Redpanda Cloud, you land on the Clusters page. This page lists all the clusters in your organization. Create a Dedicated cluster On the Clusters page, click Create cluster, then click Create Dedicated cluster. Enter a cluster name, then select the resource group, cloud provider (AWS, GCP, or Azure), region, tier, availability, and Redpanda version. If you plan to create a private network in your own VPC, select the region where your VPC is located. Three availability zones provide two backups in case one availability zone goes down. To unlock this feature for Azure, contact Redpanda support. Click Next. On the Network page, enter the connection type: Public or Private. For private networks: Your network name is used to identify this network. For a CIDR range, choose one that does not overlap with your existing VPCs or your Redpanda network. Private networks require either a VPC peering connection or a private connectivity service, such as AWS PrivateLink, GCP Private Service Connect, or Azure Private Link. Click Create. After the cluster is created, you can select the cluster on the Clusters page to see the overview for it. Kafka Connect is automatically enabled on AWS and GCP clusters, which means there is a node running for Kafka Connect even if connectors are not used. To enable Kafka Connect on Azure clusters, see Enable Kafka Connect. Start streaming: example Use rpk, Redpanda’s CLI, to build a basic streaming application that creates a topic, produces messages to it, and consumes messages from it. To learn about rpk, see the Introduction to rpk. Login to Redpanda Cloud, and select your resource group using the interactive prompt. rpk cloud login On the Overview page, copy your bootstrap server address and set it as an environment variable on your local machine: export REDPANDA_BROKERS="<bootstrap-server-address>" Go to the Security page, and create a user called redpanda-chat-account that uses the SCRAM-SHA-256 mechanism. Copy the password, and set the following environment variables on your local machine: export REDPANDA_SASL_USERNAME="redpanda-chat-account" export REDPANDA_SASL_PASSWORD="<password>" export REDPANDA_SASL_MECHANISM="SCRAM-SHA-256" Click the name of your user, and add the following permissions to the ACL (access control list): Host: * Topic name: chat-room Operations: All Click Create. Use rpk on your local machine to authenticate to Redpanda as the redpanda-chat-account user and get information about the cluster: rpk cluster info -X tls.enabled=true Create a topic called chat-room. You granted permissions to the redpanda-chat-account user to access only this topic. rpk topic create chat-room -X tls.enabled=true Output: TOPIC STATUS chat-room OK Produce a message to the topic: rpk topic produce chat-room -X tls.enabled=true Enter a message, then press Enter: Pandas are fabulous! Example output: Produced to partition 0 at offset 0 with timestamp 1663282629789. Press Ctrl+C to finish producing messages to the topic. Consume one message from the topic: rpk topic consume chat-room --num 1 -X tls.enabled=true Your message is displayed along with its metadata: { "topic": "chat-room", "value": "Pandas are fabulous!", "timestamp": 1663282629789, "partition": 0, "offset": 0 } Explore your topic In Redpanda Cloud, go to Topics > chat-room. The message that you produced to the topic is displayed along with some other details about the topic. Clean up If you don’t want to continue experimenting with your cluster, you can delete it. Go to Cluster settings and click Delete cluster. Next steps Learn more about Redpanda Cloud Learn about private networking Back to top × Simple online edits For simple changes, such as fixing a typo, you can edit the content directly on GitHub. Edit on GitHub Or, open an issue to let us know about something that you want us to change. Open an issue Contribution guide For extensive content updates, or if you prefer to work locally, read our contribution guide . Was this helpful? thumb_up thumb_down group Ask in the community mail Share your feedback group_add Make a contribution Create Remote Read Replicas Create a Topic