blob: b58963917b8c69ad87763f020f447e49575b2850 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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."
}
output "vpc_main_route_table_id" {
value = aws_vpc.vpc.main_route_table_id
description = "The ID of the Main Route Table."
}
output "vpc_subnet_id" {
value = aws_subnet.subnet.id
description = "The ID of the Subnet."
}
output "vpc_security_group_id" {
value = aws_security_group.security_group.id
description = "The ID of the Security Group."
}
|