From f60d15ba39781361f61fb0248e03dae6a588c2a5 Mon Sep 17 00:00:00 2001 From: Anton Eremin Date: Tue, 11 Jun 2024 09:25:29 +0500 Subject: [PATCH] fix: rename module in output --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 040f6c9..a74c7a1 100644 --- a/outputs.tf +++ b/outputs.tf @@ -5,5 +5,5 @@ output "lambda_function_url" { output "sso_elevator_bucket_id" { description = "The name of the SSO elevator bucket." - value = var.s3_name_of_the_existing_bucket == "" ? module.sso_elevator_bucket[0].s3_bucket_id : null + value = var.s3_name_of_the_existing_bucket == "" ? module.audit_bucket[0].s3_bucket_id : null }