add updates to all in aws_simple

This commit is contained in:
Greg Hendrickson
2023-11-16 15:15:01 -08:00
parent 64cf0d8937
commit e2e0983404
25 changed files with 225 additions and 76 deletions

View File

@@ -0,0 +1,16 @@
# In your vpc/subnets/us-east module
output "us_east_subnet_1_id" {
description = "The ID of the first US East subnet"
value = aws_subnet.us_east_subnet_1.id
}
output "us_east_subnet_2_id" {
description = "The ID of the second US East subnet"
value = aws_subnet.us_east_subnet_2.id
}
output "us_east_subnet_3_id" {
description = "The ID of the third US East subnet"
value = aws_subnet.us_east_subnet_3.id
}