mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-15 07:00:14 -04:00
1.4 KiB
1.4 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| aws | AWS: aws_kinesis_stream | docs-aws-resource-kinesis-stream | Provides a AWS Kinesis Stream |
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
tags {
Environment = "test"
}
}
Argument Reference
The following arguments are supported:
name- (Required) A name to identify the stream. This is unique to the AWS account and region the Stream is created in.shard_count– (Required) The number of shards that the stream will use. Amazon has guidlines for specifying the Stream size that should be referenced when creating a Kinesis stream. See Amazon Kinesis Streams for more.tags- (Optional) A mapping of tags to assign to the resource.
Attributes Reference
id- The unique Stream idname- The unique Stream name (same asid)shard_count- The count of Shards for this Streamarn- The Amazon Resource Name (ARN) specifying the Stream