Skip to content

Commit

Permalink
Fixed output of aws_flow_log
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbabenko committed Mar 11, 2020
1 parent de11253 commit 8554bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ output "vpc_endpoint_cloud_directory_dns_entry" {
# VPC flow log
output "vpc_flow_log_id" {
description = "The ID of the Flow Log resource"
value = aws_flow_log.this[0].id
value = concat(aws_flow_log.this.*.id, [""])[0]
}

output "vpc_flow_log_destination_arn" {
Expand Down

0 comments on commit 8554bfd

Please sign in to comment.