From e2c282182d9d60e4c248e84972840593b7177062 Mon Sep 17 00:00:00 2001 From: Kumar Kavish <108507473+kkavish@users.noreply.github.com> Date: Tue, 10 Dec 2024 18:42:23 +0530 Subject: [PATCH] TF-11115, TF-11117, TF-11116] Adding S3 bucket to output (#342) * object store integration for writing release tests in TFE * object store integration for writing release tests in TFE --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index 1598af6e..fc0e7af0 100644 --- a/outputs.tf +++ b/outputs.tf @@ -85,3 +85,8 @@ output "key" { value = data.aws_kms_key.main.id description = "The KMS key used to encrypt data." } + +output "s3_bucket" { + value = local.object_storage.s3_bucket + description = "S3 bucket name" +}