Skip to content

Commit

Permalink
Changed website_domain to website_endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
hmarsolla committed Jul 26, 2024
1 parent fc587ca commit 6a85718
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ output "bucket_domain_name" {
value = aws_s3_bucket.bucket.bucket_domain_name # Bucket domain name. Will be of format bucketname.s3.amazonaws.com
}
output "website_domain" {
value = aws_s3_bucket.bucket.website_domain
output "website_endpoint" {
value = aws_s3_bucket.bucket.website_endpoint
}
```
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ output "bucket_domain_name" {
value = aws_s3_bucket.bucket.bucket_domain_name
}

output "website_domain" {
value = aws_s3_bucket.bucket.website_domain
output "website_endpoint" {
value = aws_s3_bucket.bucket.website_endpoint
}

0 comments on commit 6a85718

Please sign in to comment.