Skip to content

Commit

Permalink
Update outputs.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
joscheuerer authored Jul 4, 2024
1 parent 6dfbb0f commit 2206164
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2206164

Please sign in to comment.