diff --git a/README.md b/README.md
index 54b664b..b50a1fa 100644
--- a/README.md
+++ b/README.md
@@ -88,7 +88,7 @@ statement instead the previous block.
| Name | Version |
|------|---------|
-| [terraform](#requirement\_terraform) | >= 1.3.0, <1.6.0 |
+| [terraform](#requirement\_terraform) | >= 1.3.0, <1.7.0 |
### Modules
diff --git a/common-dev-assets b/common-dev-assets
index 9932ccd..ad28982 160000
--- a/common-dev-assets
+++ b/common-dev-assets
@@ -1 +1 @@
-Subproject commit 9932ccdc5b47892639ac96b751969595c41067d6
+Subproject commit ad28982e3b7f0ba1d9d4ccd916f17a8f85d2049a
diff --git a/examples/basic/version.tf b/examples/basic/version.tf
index 46915a6..a557e04 100644
--- a/examples/basic/version.tf
+++ b/examples/basic/version.tf
@@ -1,5 +1,5 @@
terraform {
- required_version = ">= 1.3.0, <1.6.0"
+ required_version = ">= 1.3.0, <1.7.0"
# Ensure that there is always 1 example locked into the lowest provider version of the range defined in the main
# module's version.tf (usually a basic example), and 1 example that will always use the latest provider version.
diff --git a/examples/complete/version.tf b/examples/complete/version.tf
index 5adb5b5..d70a9d2 100644
--- a/examples/complete/version.tf
+++ b/examples/complete/version.tf
@@ -1,5 +1,5 @@
terraform {
- required_version = ">= 1.3.0, <1.6.0"
+ required_version = ">= 1.3.0, <1.7.0"
# Ensure that there is always 1 example locked into the lowest provider version of the range defined in the main
# module's version.tf (usually a basic example), and 1 example that will always use the latest provider version.
diff --git a/version.tf b/version.tf
index bcb2505..d5cac67 100644
--- a/version.tf
+++ b/version.tf
@@ -1,5 +1,5 @@
terraform {
- required_version = ">= 1.3.0, <1.6.0"
+ required_version = ">= 1.3.0, <1.7.0"
# If your module requires any terraform providers, uncomment the "required_providers" section below and add all required providers.
# Each required provider's version should be a flexible range to future proof the module's usage with upcoming minor and patch versions.