From 75be5cb70187aa35348563726fb9a8f70fff6b6b Mon Sep 17 00:00:00 2001 From: hades Date: Wed, 6 Aug 2025 15:36:58 +0200 Subject: [PATCH] Update 03-terraform-overview.md Fixed issue where the output blocks referenced aws_s3_bucket instead of module. --- docs/03-terraform-overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/03-terraform-overview.md b/docs/03-terraform-overview.md index b9243df..5e3abce 100644 --- a/docs/03-terraform-overview.md +++ b/docs/03-terraform-overview.md @@ -136,7 +136,7 @@ module "my_first_s3_bucket" { } output "first_bucket_arn" { - value = aws_s3_bucket.my_first_s3_bucket.bucket_arn + value = module.my_first_s3_bucket.bucket_arn } module "my_second_s3_bucket" { @@ -145,7 +145,7 @@ module "my_second_s3_bucket" { } output "second_bucket_arn" { - value = aws_s3_bucket.my_second_s3_bucket.bucket_arn + value = module.my_second_s3_bucket.bucket_arn } ```