11 lines
230 B
Terraform
11 lines
230 B
Terraform
|
output vpc_id {
|
||
|
value = module.networking-vpc-subnets.vpc_id
|
||
|
}
|
||
|
|
||
|
output public_subnets {
|
||
|
value = module.networking-vpc-subnets.public_subnets
|
||
|
}
|
||
|
|
||
|
output private_subnets {
|
||
|
value = module.networking-vpc-subnets.private_subnets
|
||
|
}
|