refactor(terraform): 2n_aws_c5n
[csit.git] / fdio.infra.terraform / terraform-aws-vpc / outputs.tf
index e1072a6..b589639 100644 (file)
@@ -1,9 +1,24 @@
 output "vpc_id" {
   value       = aws_vpc.vpc.id
-  description = "The ID of the VPC"
+  description = "The ID of the VPC."
 }
 
 output "vpc_ipv6_cidr_block" {
   value       = aws_vpc.vpc.ipv6_cidr_block
-  description = "IPv6 CIDR block"
-}
\ No newline at end of file
+  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."
+}