-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #323 from lorengordon/feat/support-tgw
Refactors module to support all attributes of the Flow Log resource
- Loading branch information
Showing
12 changed files
with
311 additions
and
220 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
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,26 +1,15 @@ | ||
# VPC Flow Log | ||
output "flow_log_id" { | ||
description = "The ID of the VPC Flow Log" | ||
value = aws_flow_log.this.id | ||
output "flow_log" { | ||
description = "Object of attributes for the Flow Log" | ||
value = aws_flow_log.this | ||
} | ||
|
||
output "log_group_arn" { | ||
description = "ARN of the Log Group for the VPC Flow Log" | ||
value = join("", aws_cloudwatch_log_group.this.*.arn) | ||
output "cloudwatch_log_group" { | ||
description = "Object of attributes for the CloudWatch Log Group" | ||
value = aws_cloudwatch_log_group.this | ||
} | ||
|
||
output "iam_role_arn" { | ||
description = "ARN of the IAM Role for the VPC Flow Log" | ||
value = join("", aws_iam_role.this.*.arn) | ||
output "iam_role" { | ||
description = "Object of attributes for the IAM Role used by the Flow Log" | ||
value = aws_iam_role.cloudwatch | ||
} | ||
|
||
output "iam_role_unique_id" { | ||
description = "Unique ID of the IAM Role for the VPC Flow Log" | ||
value = join("", aws_iam_role.this.*.unique_id) | ||
} | ||
|
||
output "iam_role_name" { | ||
description = "Name of the IAM Role for the VPC Flow Log" | ||
value = join("", aws_iam_role.this.*.name) | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.