Skip to content

Commit

Permalink
Clarify bucket-related output descriptions (#138)
Browse files Browse the repository at this point in the history
Co-authored-by: cloudpossebot <[email protected]>
  • Loading branch information
alexjurkiewicz and cloudpossebot authored Mar 10, 2021
1 parent 7453694 commit 1188b5d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,10 @@ Available targets:
| cf\_identity\_iam\_arn | CloudFront Origin Access Identity IAM ARN |
| cf\_s3\_canonical\_user\_id | Canonical user ID for CloudFront Origin Access Identity |
| cf\_status | Current status of the distribution |
| logs | Logs resource |
| s3\_bucket | Name of S3 bucket |
| s3\_bucket\_arn | ARN of S3 bucket |
| s3\_bucket\_domain\_name | Domain of S3 bucket |
| logs | Log bucket resource |
| s3\_bucket | Name of origin S3 bucket |
| s3\_bucket\_arn | ARN of origin S3 bucket |
| s3\_bucket\_domain\_name | Domain of origin S3 bucket |
<!-- markdownlint-restore -->


Expand Down
8 changes: 4 additions & 4 deletions docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@
| cf\_identity\_iam\_arn | CloudFront Origin Access Identity IAM ARN |
| cf\_s3\_canonical\_user\_id | Canonical user ID for CloudFront Origin Access Identity |
| cf\_status | Current status of the distribution |
| logs | Logs resource |
| s3\_bucket | Name of S3 bucket |
| s3\_bucket\_arn | ARN of S3 bucket |
| s3\_bucket\_domain\_name | Domain of S3 bucket |
| logs | Log bucket resource |
| s3\_bucket | Name of origin S3 bucket |
| s3\_bucket\_arn | ARN of origin S3 bucket |
| s3\_bucket\_domain\_name | Domain of origin S3 bucket |
<!-- markdownlint-restore -->
8 changes: 4 additions & 4 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,22 @@ output "cf_s3_canonical_user_id" {

output "s3_bucket" {
value = local.bucket
description = "Name of S3 bucket"
description = "Name of origin S3 bucket"
}

output "s3_bucket_domain_name" {
value = local.bucket_domain_name
description = "Domain of S3 bucket"
description = "Domain of origin S3 bucket"
}

output "s3_bucket_arn" {
value = join("", aws_s3_bucket.origin.*.arn)
description = "ARN of S3 bucket"
description = "ARN of origin S3 bucket"
}

output "logs" {
value = module.logs
description = "Logs resource"
description = "Log bucket resource"
}

output "aliases" {
Expand Down

0 comments on commit 1188b5d

Please sign in to comment.