optar_infra/terraform/modules/network/outputs.tf

11 lines
252 B
Terraform
Raw Permalink Normal View History

2024-07-18 09:30:33 +00:00
output "vpc_id" {
description = "ID of the created vpcto be used in eks module"
value = module.vpc.vpc_id
}
output "vpc_subnet_ids" {
description = "IDs of the subnets to be used by kuernetes"
value = module.vpc.private_subnets
}