diff --git a/README.md b/README.md
index febe78a..82c413d 100644
--- a/README.md
+++ b/README.md
@@ -74,6 +74,7 @@ An opinionated Terraform module that can be used to create and manage an VPC in
| [additional\_private\_subnet\_ids](#output\_additional\_private\_subnet\_ids) | The IDs of the additional private subnets that have been created. |
| [additional\_private\_subnets\_cidr\_blocks](#output\_additional\_private\_subnets\_cidr\_blocks) | The additional private subnets that have been created. |
| [additional\_public\_subnet\_ids](#output\_additional\_public\_subnet\_ids) | The IDs of the additional public subnets that have been created. |
+| [bastion\_host\_key\_pair\_name](#output\_bastion\_host\_key\_pair\_name) | The name of the SSH key pair associated with the bastion host. |
| [bastion\_host\_private\_ip](#output\_bastion\_host\_private\_ip) | n/a |
| [bastion\_host\_public\_ip](#output\_bastion\_host\_public\_ip) | n/a |
| [bastion\_host\_security\_group\_id](#output\_bastion\_host\_security\_group\_id) | n/a |
@@ -83,6 +84,7 @@ An opinionated Terraform module that can be used to create and manage an VPC in
| [private\_subnet\_ids](#output\_private\_subnet\_ids) | The IDs of the main private subnets that have been created. |
| [public\_route\_table\_ids](#output\_public\_route\_table\_ids) | The IDs of the public route table that have been created. |
| [public\_subnet\_ids](#output\_public\_subnet\_ids) | The IDs of the main public subnets that have been created. |
+| [vpc\_cidr\_block](#output\_vpc\_cidr\_block) | The IPv4 CIDR block that have been used. |
| [vpc\_ipv6\_cidr\_block](#output\_vpc\_ipv6\_cidr\_block) | The IPv6 CIDR block that have been used. |
diff --git a/outputs.tf b/outputs.tf
index fc9ce6c..c71ff11 100644
--- a/outputs.tf
+++ b/outputs.tf
@@ -81,4 +81,9 @@ output "public_route_table_ids" {
output "vpc_ipv6_cidr_block" {
description = "The IPv6 CIDR block that have been used."
value = module.vpc.vpc_ipv6_cidr_block
+}
+
+output "vpc_cidr_block" {
+ description = "The IPv4 CIDR block that have been used."
+ value = module.vpc.vpc_cidr_block
}
\ No newline at end of file