-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes deprecation of log_group_name -> log_destination (#13)
* Fixes several warnings around wildcarding * Fixes outputs which return as lists * Removes current = “true” from aws_region * Removes current = “true” from aws_region * Fixes deprecation of log_group_name -> log_destination * Run fmt + make cmds * Fixes linting issue
- Loading branch information
Showing
4 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
output "log_group_arn" { | ||
value = "${aws_cloudwatch_log_group.default.arn}" | ||
value = "${join("", aws_cloudwatch_log_group.default.*.arn)}" | ||
description = "ARN of the log group" | ||
} | ||
|
||
output "vpc_flow_id" { | ||
value = "${aws_flow_log.vpc.id}" | ||
description = "Flow Log IDs of VPCs" | ||
value = "${join("", aws_flow_log.vpc.*.id)}" | ||
description = "VPC Flow Log ID" | ||
} | ||
|
||
output "subnet_flow_ids" { | ||
value = "${aws_flow_log.subnets.*.id}" | ||
value = "${join("", aws_flow_log.subnets.*.id)}" | ||
description = "Flow Log IDs of subnets" | ||
} | ||
|
||
output "eni_flow_ids" { | ||
value = "${aws_flow_log.eni.*.id}" | ||
value = "${join("", aws_flow_log.eni.*.id)}" | ||
description = "Flow Log IDs of ENIs" | ||
} | ||
|
||
output "kinesis_id" { | ||
value = "${aws_kinesis_stream.default.id}" | ||
description = "Stream ID" | ||
value = "${join("", aws_kinesis_stream.default.*.id)}" | ||
description = "Kinesis Stream ID" | ||
} | ||
|
||
output "kinesis_name" { | ||
value = "${aws_kinesis_stream.default.name}" | ||
description = "Stream name" | ||
value = "${join("", aws_kinesis_stream.default.*.name)}" | ||
description = "Kinesis Stream name" | ||
} | ||
|
||
output "kinesis_shard_count" { | ||
value = "${aws_kinesis_stream.default.shard_count}" | ||
description = "Count of Shards for Stream" | ||
value = "${join("", aws_kinesis_stream.default.*.shard_count)}" | ||
description = "Kinesis Stream Shard count" | ||
} | ||
|
||
output "kinesis_arn" { | ||
value = "${aws_kinesis_stream.default.arn}" | ||
description = "ARN of Stream" | ||
value = "${join("", aws_kinesis_stream.default.*.arn)}" | ||
description = "Kinesis Stream ARN" | ||
} |