Skip to content

Commit

Permalink
chore: adding the outputs from the vpc creation
Browse files Browse the repository at this point in the history
gambol99 committed Apr 9, 2024
1 parent 4a0ec2f commit dbc5643
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -29,6 +29,16 @@ output "inbound_resolver_ip_addresses" {
value = local.enable_inbound_resolver ? local.inbound_resolver_ip_addresses : null
}

output "private_subnet_attributes_by_az" {
description = "The attributes of the private subnets"
value = local.enable_vpc_creation ? module.vpc.private_subnet_attributes_by_az : null
}

output "rt_attributes_by_type_by_az" {
description = "The attributes of the route tables"
value = local.enable_vpc_creation ? module.vpc.rt_attributes_by_type_by_az : null
}

output "vpc_id" {
description = "The id of the vpc we used to provision the endpoints"
value = local.vpc_id

0 comments on commit dbc5643

Please sign in to comment.