From 088e1373a1ed9b58e83a6d5b8a0c2a13559adae3 Mon Sep 17 00:00:00 2001 From: Charles Bushong Date: Tue, 31 Oct 2023 12:05:05 -0400 Subject: [PATCH] BATIAI-000: Re-instate deleted outputs to ensure this change is non-breaking (#5) --- outputs.tf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/outputs.tf b/outputs.tf index 7101946..e22dbee 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,3 +1,15 @@ output "buckets" { value = module.bucket } + +output "loki_s3_buckets" { + value = module.bucket["loki"].s3_buckets +} + +output "thanos_s3_buckets" { + value = module.bucket["thanos"].s3_buckets +} + +output "velero_s3_buckets" { + value = module.bucket["velero"].s3_buckets +}