Files
terraform/aws/aws_simple/modules/vpc/subnets/us-east/outputs.tf
Greg Hendrickson 48ed0ca1d6 seperate east/west
2023-11-17 09:46:38 -08:00

17 lines
440 B
HCL

# 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
}