Skip to content

Commit

Permalink
Fix typo (#30)
Browse files Browse the repository at this point in the history
* Fix typo

* Fix typo

* Updated README.md

Co-authored-by: Maxim Mironenko <[email protected]>
Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
3 people authored Mar 4, 2020
1 parent 76286f8 commit ee9e513
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ Available targets:
| Name | Description |
|------|-------------|
| hostname | Bucket hostname |
| s3_bucket_arn | Name of of website bucket |
| s3_bucket_domain_name | Name of of website bucket |
| s3_bucket_arn | ARN identifier of website bucket |
| s3_bucket_domain_name | Name of website bucket |
| s3_bucket_hosted_zone_id | The Route 53 Hosted Zone ID for this bucket's region |
| s3_bucket_name | DNS record of website bucket |
| s3_bucket_website_domain | The domain of the website endpoint |
Expand Down
4 changes: 2 additions & 2 deletions docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
| Name | Description |
|------|-------------|
| hostname | Bucket hostname |
| s3_bucket_arn | Name of of website bucket |
| s3_bucket_domain_name | Name of of website bucket |
| s3_bucket_arn | ARN identifier of website bucket |
| s3_bucket_domain_name | Name of website bucket |
| s3_bucket_hosted_zone_id | The Route 53 Hosted Zone ID for this bucket's region |
| s3_bucket_name | DNS record of website bucket |
| s3_bucket_website_domain | The domain of the website endpoint |
Expand Down
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ output "s3_bucket_name" {

output "s3_bucket_domain_name" {
value = aws_s3_bucket.default.bucket_domain_name
description = "Name of of website bucket"
description = "Name of website bucket"
}

output "s3_bucket_arn" {
value = aws_s3_bucket.default.arn
description = "Name of of website bucket"
description = "ARN identifier of website bucket"
}

output "s3_bucket_website_endpoint" {
Expand Down

0 comments on commit ee9e513

Please sign in to comment.