From 2206164477c72523aecd116ef1606dde6f3f8f50 Mon Sep 17 00:00:00 2001 From: Johannes Scheuerer Date: Thu, 4 Jul 2024 07:50:59 +0200 Subject: [PATCH] Update outputs.tf --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index 1d59daa36..1eb27df2c 100644 --- a/outputs.tf +++ b/outputs.tf @@ -611,6 +611,11 @@ output "azs" { description = "A list of availability zones specified as argument to this module" value = var.azs } +data "aws_region" "current" {} # data.aws_region.current.name +output "region" { + description = "Details about selected AWS region" + value = data.aws_region.current.name +} output "name" { description = "The name of the VPC specified as argument to this module"