123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // The region in which the infra lives.
- output "region" {
- value = "${var.region}"
- }
- // Security group for internal ELBs.
- output "internal_elb" {
- value = "${module.security_groups.internal_elb}"
- }
- // Security group for external ELBs.
- output "external_elb" {
- value = "${module.security_groups.external_elb}"
- }
- // Comma separated list of internal subnet IDs.
- output "internal_subnets" {
- value = "${module.vpc.internal_subnets}"
- }
- // Comma separated list of external subnet IDs.
- output "external_subnets" {
- value = "${module.vpc.external_subnets}"
- }
- // The environment of the stack, e.g "prod".
- output "environment" {
- value = "${var.environment}"
- }
- // The VPC availability zones.
- output "availability_zones" {
- value = "${module.vpc.availability_zones}"
- }
- // The VPC security group ID.
- output "vpc_security_group" {
- value = "${module.vpc.security_group}"
- }
- // The VPC ID.
- output "vpc_id" {
- value = "${module.vpc.id}"
- }
- // Comma separated list of internal route table IDs.
- output "internal_route_tables" {
- value = "${module.vpc.internal_rtb_id}"
- }
- // The external route table ID.
- output "external_route_tables" {
- value = "${module.vpc.external_rtb_id}"
- }
|