The Nautilus DevOps team needs to create an AWS Kinesis data stream for real-time data processing. This stream will be used to ingest and process large volumes of streaming data, which will then be consumed by various applications for analytics and real-time decision-making. The stream should be named nautilus-stream.
code ![]()
resource “aws_kinesis_stream” “devops_stream” {
name             = “devops-stream”
shard_count      = 1
retention_period = 48
shard_level_metrics = [
“IncomingBytes”,
“OutgoingBytes”,
]
stream_mode_details {
stream_mode = “PROVISIONED”
}
tags = {
Environment = “test”
}
}
error:
No worries!!
Uh oh! Looks like the task was not completed successfully. But it’s Ok. You can try again next time this task is assigned to you.

 Terraform plan is still returning some pending changes.