FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_kinesis_stream

Provides a Kinesis Stream resource. Amazon Kinesis is a managed service that scales elastically for real-time processing of streaming big data.

For more details, see the Amazon Kinesis Documentation.

Example Usage

resource "aws_kinesis_stream" "test_stream" {
	name = "terraform-kinesis-test"
	shard_count = 1
	retention_period = 48
	shard_level_metrics = [
		"IncomingBytes",
		"OutgoingBytes"
	]
	tags {
		Environment = "test"
	}
}

Argument Reference

The following arguments are supported:

Attributes Reference


See the source of this document at Terraform.io