Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing the outputs to all point to the .this named objects #20

Merged
merged 1 commit into from
Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions modules/aws/s3/s3_website/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
output "s3_bucket_id" {
value = aws_s3_bucket.s3_bucket.id
value = aws_s3_bucket.this.id
}

output "s3_bucket_arn" {
value = aws_s3_bucket.s3_bucket.arn
value = aws_s3_bucket.this.arn
}

output "s3_bucket_domain_name" {
value = aws_s3_bucket.s3_bucket.bucket_domain_name
value = aws_s3_bucket.this.bucket_domain_name
}

output "s3_hosted_zone_id" {
value = aws_s3_bucket.s3_bucket.hosted_zone_id
value = aws_s3_bucket.this.hosted_zone_id
}

output "s3_bucket_region" {
value = aws_s3_bucket.s3_bucket.region
value = aws_s3_bucket.this.region
}

/*output "s3_bucket_website_endpoint" {
value = aws_s3_bucket.s3_bucket.website_endpoint
value = aws_s3_bucket.this.website_endpoint
}

output "s3_bucket_website_domain" {
value = aws_s3_bucket.s3_bucket.website_domain
value = aws_s3_bucket.this.website_domain
}*/