Module: kinesis-stream
Terraform module to deploy an Amazon Kinesis Data Stream on AWS.
Usage
For a complete example, see examples/complete.
For automated tests of the complete example using bats and Terratest (which tests and deploys the example on AWS), see test.
# Create a standard label resource. See [null-label](https://github.com/cloudposse/terraform-null-label/#terraform-null-label--)
module "label" {
source = "cloudposse/label/null"
# Cloud Posse recommends pinning every module to a specific version, though usually you want to use the current one
# version = "x.x.x"
namespace = "eg"
name = "example"
}
module "kinesis" {
source = "cloudposse/kinesis-stream/aws"
# Cloud Posse recommends pinning every module to a specific version
# version = "x.x.x"
shard_count = 2
context = module.label.this
}