Skip to content

Commit

Permalink
fix: updated output to latest change
Browse files Browse the repository at this point in the history
  • Loading branch information
kfc-manager committed Mar 4, 2024
1 parent 5049db4 commit 1ccb9c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ output "internet_gw" {
value = try(aws_internet_gateway.main.id, null)
}

output "nat_gw" {
description = "The ID of the NAT Gateway"
value = try(aws_nat_gateway.main[0].id, null)
output "nat_gws" {
description = "List of IDs of the NAT Gateways"
value = try(aws_nat_gateway.main[*].id, null)
}

0 comments on commit 1ccb9c0

Please sign in to comment.