refactor(terraform): 2n_aws_c5n
[csit.git] / fdio.infra.terraform / terraform-aws-vpc / outputs.tf
1 output "vpc_id" {
2   value       = aws_vpc.vpc.id
3   description = "The ID of the VPC."
4 }
5
6 output "vpc_ipv6_cidr_block" {
7   value       = aws_vpc.vpc.ipv6_cidr_block
8   description = "IPv6 CIDR block."
9 }
10
11 output "vpc_main_route_table_id" {
12   value       = aws_vpc.vpc.main_route_table_id
13   description = "The ID of the Main Route Table."
14 }
15
16 output "vpc_subnet_id" {
17   value       = aws_subnet.subnet.id
18   description = "The ID of the Subnet."
19 }
20
21 output "vpc_security_group_id" {
22   value       = aws_security_group.security_group.id
23   description = "The ID of the Security Group."
24 }