File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -142,4 +142,6 @@ No modules.
142142| <a name =" output_lb_https_tgs_map_arn_port " ></a > [ lb\_ https\_ tgs\_ map\_ arn\_ port] ( #output\_ lb\_ https\_ tgs\_ map\_ arn\_ port ) | n/a |
143143| <a name =" output_lb_https_tgs_names " ></a > [ lb\_ https\_ tgs\_ names] ( #output\_ lb\_ https\_ tgs\_ names ) | List of HTTPS Target Groups Names |
144144| <a name =" output_lb_https_tgs_ports " ></a > [ lb\_ https\_ tgs\_ ports] ( #output\_ lb\_ https\_ tgs\_ ports ) | List of HTTPS Target Groups ports |
145+ | <a name =" output_lb_logs_s3_bucket_arn " ></a > [ lb\_ logs\_ s3\_ bucket\_ arn] ( #output\_ lb\_ logs\_ s3\_ bucket\_ arn ) | LB Logging S3 Bucket ARN |
146+ | <a name =" output_lb_logs_s3_bucket_id " ></a > [ lb\_ logs\_ s3\_ bucket\_ id] ( #output\_ lb\_ logs\_ s3\_ bucket\_ id ) | LB Logging S3 Bucket ID |
145147<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Original file line number Diff line number Diff line change @@ -148,3 +148,16 @@ output "lb_https_listeners_arns" {
148148 description = " List of HTTPS Listeners ARNs"
149149 value = [for listener in aws_lb_listener . lb_https_listeners : listener . arn ]
150150}
151+
152+ # ------------------------------------------------------------------------------
153+ # S3 LB Logging Bucket
154+ # ------------------------------------------------------------------------------
155+ output "lb_logs_s3_bucket_id" {
156+ description = " LB Logging S3 Bucket ID"
157+ value = aws_s3_bucket. logs . id
158+ }
159+
160+ output "lb_logs_s3_bucket_arn" {
161+ description = " LB Logging S3 Bucket ARN"
162+ value = aws_s3_bucket. logs . arn
163+ }
You can’t perform that action at this time.
0 commit comments