Skip to content

Commit

Permalink
change output names
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 5, 2021
1 parent 3e39be0 commit 5135148
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions s3-access-logs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,5 @@ No Modules.

| Name | Description |
|------|-------------|
| logs\_bucket\_arn | Logging S3 bucket ARN |
| logs\_bucket\_id | Logging S3 bucket ID |
| bucket\_arn | Logging S3 bucket ARN |
| bucket\_id | Logging S3 bucket ID |
4 changes: 2 additions & 2 deletions s3-access-logs/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
output "logs_bucket_id" {
output "bucket_id" {
description = "Logging S3 bucket ID"
value = aws_s3_bucket.logs.id
}

output "logs_bucket_arn" {
output "bucket_arn" {
description = "Logging S3 bucket ARN"
value = aws_s3_bucket.logs.arn
}
4 changes: 2 additions & 2 deletions s3-flow-logs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ No Modules.

| Name | Description |
|------|-------------|
| flowlogs\_bucket\_arn | VPC Flow Logs S3 bucket ARN |
| flowlogs\_bucket\_id | VPC Flow Logs S3 bucket ID |
| bucket\_arn | VPC Flow Logs S3 bucket ARN |
| bucket\_id | VPC Flow Logs S3 bucket ID |
4 changes: 2 additions & 2 deletions s3-flow-logs/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
output "flowlogs_bucket_id" {
output "bucket_id" {
description = "VPC Flow Logs S3 bucket ID"
value = aws_s3_bucket.flowlogs.id
}

output "flowlogs_bucket_arn" {
output "bucket_arn" {
description = "VPC Flow Logs S3 bucket ARN"
value = aws_s3_bucket.flowlogs.arn
}

0 comments on commit 5135148

Please sign in to comment.