Terraform task 18 level 1 - create kinesis

Getting the below error: Resources have not been created using ‘terraform’.
Here is the main.tf

resource “aws_kinesis_stream” “datacenter_stream” {
name = “datacenter-stream”
shard_count = 1
retention_period = 48

shard_level_metrics = [
“IncomingBytes”,
“OutgoingBytes”,
]

stream_mode_details {
stream_mode = “PROVISIONED”
}

tags = {
Name = “datacenter-stream”
Environment = “Production”
Department = “DevOps”
}
}

Output the stream details

output “kinesis_stream_name” {
value = aws_kinesis_stream.datacenter_stream.name
}

output “kinesis_stream_arn” {
value = aws_kinesis_stream.datacenter_stream.arn
}

output “kinesis_stream_status” {
value = aws_kinesis_stream.datacenter_stream.id
}

Hi @avimore2010

Thanks for your detail feedback.

It is a valid issue, I’ve forwared to the team, I’ll keep you update.

Still facing the same issue

Hi @avimore2010

The issue isn’t fixed yet. As soon as I get an update from the team, I’ll let you know. Sorry for the inconvenience.

The task is updated, I was able to pass it, please try again.

Thank You, Issue resolved