Skip to content

Commit df23366

Browse files
committed
vpc: add cidr_block output
1 parent e27f895 commit df23366

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

vpc/main.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,11 @@ output "id" {
265265
value = "${aws_vpc.main.id}"
266266
}
267267

268+
// The VPC CIDR
269+
output "cidr_block" {
270+
value = "${aws_vpc.main.cidr_block}"
271+
}
272+
268273
// A comma-separated list of subnet IDs.
269274
output "external_subnets" {
270275
value = ["${aws_subnet.external.*.id}"]

0 commit comments

Comments
 (0)