blob: e1072a6b161a6ed9fcf2b1ad410040e3425fb57b (
plain)
1
2
3
4
5
6
7
8
9
|
output "vpc_id" {
value = aws_vpc.vpc.id
description = "The ID of the VPC"
}
output "vpc_ipv6_cidr_block" {
value = aws_vpc.vpc.ipv6_cidr_block
description = "IPv6 CIDR block"
}
|