chmury_aronb/labs/terraform/solutions/kinesis_ds.tf

14 lines
374 B
Terraform
Raw Normal View History

2021-04-24 15:54:14 +02:00
resource "aws_kinesis_stream" "cryptostock_stream" {
name = "cryptostock-${var.environment}-${var.account_number}-${var.student_initials}-${var.student_index_no}"
shard_count = 1
enforce_consumer_deletion = true
shard_level_metrics = [
"IncomingBytes",
"OutgoingBytes",
"IncomingRecords",
"OutgoingRecords"
]
tags = merge(local.common_tags, )
}