Skip to content

A Terraform module to provision an Amazon MSK (Amazon Managed Streaming for Apache Kafka) cluster

License

Notifications You must be signed in to change notification settings

Shogan/terraform-aws-msk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraform-aws-msk

A Terraform module to provision an Amazon MSK cluster (Amazon Managed Streaming for Apache Kafka).

Right now the module is very basic, but will be extended in the near future.

Usage

Basic example

terraform {
  required_version = ">= 0.12.0"
}

provider "aws" {
  version = ">= 2.28.1"
  region  = eu-west-2
}

module "msk" {
  source                     = "git::https://github.com/Shogan/terraform-aws-msk.git?ref=master"
  namespace                  = "eg"
  stage                      = "dev"
  name                       = "msk"
  security_groups            = ["sg-xxxxxxxxxxx"]
  subnet_ids                 = ["subnet-aaaaaaaa", "subnet-bbbbbbbb", "subnet-ccccccccc"]
  broker_node_instance_type  = "kafka.m5.large"
  broker_node_instance_count = 3
}

About

A Terraform module to provision an Amazon MSK (Amazon Managed Streaming for Apache Kafka) cluster

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages