Skip to content

Commit

Permalink
Output cidr_block
Browse files Browse the repository at this point in the history
Although, I might in fact get this from the same variable as I put in, it is more readable when referring to it from other resources this way.
  • Loading branch information
larstobi authored Feb 15, 2019
1 parent 1218012 commit 8b9d3e6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@ output "main_route_table_id" {
description = "The ID of the main route table."
value = "${aws_vpc.main.main_route_table_id}"
}

output "cidr_block" {
description = "The cidr_block of the VPC."
value = "${aws_vpc.main.cidr_block}"
}

0 comments on commit 8b9d3e6

Please sign in to comment.