Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Terraform 0.11 output fix (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Puneeth-n authored Apr 15, 2020
1 parent 1f3c0f1 commit 09aa192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,6 @@ resource "aws_kinesis_firehose_delivery_stream" "stream" {
}

output "arn" {
value = "${aws_kinesis_firehose_delivery_stream.stream.arn}"
value = "${element(concat(aws_kinesis_firehose_delivery_stream.stream.*.arn, list("")), 0)}"
description = "ARN of the Kinesis Firehose"
}

0 comments on commit 09aa192

Please sign in to comment.