msk

MSK

Analytics & IoTAWS
General

General information about the service.

Description

Amazon MSK is a fully managed Apache Kafka service.

Service Namespace

AWS::MSK::Cluster

ARN Pattern

arn:aws:kafka:{region}:{account}:cluster/{cluster-name}/{cluster-uuid}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

msk-

Length

1-64

Valid Characters

Letters, numbers, hyphens, underscores

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_msk_cluster" "main" {
2 cluster_name = "msk-${var.environment}"
3 kafka_version = "3.4.0"
4 number_of_broker_nodes = 3
5 broker_node_group_info {
6 instance_type = "kafka.t3.small"
7 client_subnets = var.subnet_ids
8 security_groups = [var.security_group_id]
9 }
10}
Utilities

Utilities to support app deployment or configuration.