From 37d06914f4b4c7f192babee5655d4d26958ced18 Mon Sep 17 00:00:00 2001 From: Jonathan Wright Date: Sun, 12 Nov 2017 19:13:55 +0000 Subject: [PATCH] Add additional output for S3 logging bucket name --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index f6b5288..0d11d16 100644 --- a/outputs.tf +++ b/outputs.tf @@ -8,6 +8,11 @@ output "s3_bucket_name" { value = "${aws_s3_bucket.content.id}" } +output "s3_logging_name" { + description = "The name of the S3 logging bucket that access logs will be saved to." + value = "${aws_s3_bucket.logs.id}" +} + output "cloudfront_distribution_id" { description = "The ID of the CloudFront Distribution." value = "${aws_cloudfront_distribution.website.id}"