diff --git a/examples/complete/README.md b/examples/complete/README.md
index e3afcd4..4daec66 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -19,7 +19,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
-| [terraform](#requirement\_terraform) | >= 0.13.1 |
+| [terraform](#requirement\_terraform) | >= 1.0 |
| [aws](#requirement\_aws) | >= 4.4 |
## Providers
@@ -31,8 +31,8 @@ No providers.
| Name | Source | Version |
|------|--------|---------|
| [tgw](#module\_tgw) | ../../ | n/a |
-| [vpc1](#module\_vpc1) | terraform-aws-modules/vpc/aws | ~> 4.0 |
-| [vpc2](#module\_vpc2) | terraform-aws-modules/vpc/aws | ~> 4.0 |
+| [vpc1](#module\_vpc1) | terraform-aws-modules/vpc/aws | ~> 5.0 |
+| [vpc2](#module\_vpc2) | terraform-aws-modules/vpc/aws | ~> 5.0 |
## Resources
diff --git a/examples/complete/main.tf b/examples/complete/main.tf
index a4e794f..4c5566d 100644
--- a/examples/complete/main.tf
+++ b/examples/complete/main.tf
@@ -83,7 +83,7 @@ module "tgw" {
module "vpc1" {
source = "terraform-aws-modules/vpc/aws"
- version = "~> 4.0"
+ version = "~> 5.0"
name = "${local.name}-vpc1"
cidr = "10.10.0.0/16"
@@ -100,7 +100,7 @@ module "vpc1" {
module "vpc2" {
source = "terraform-aws-modules/vpc/aws"
- version = "~> 4.0"
+ version = "~> 5.0"
name = "${local.name}-vpc2"
cidr = "10.20.0.0/16"
diff --git a/examples/complete/versions.tf b/examples/complete/versions.tf
index 03533eb..46b7087 100644
--- a/examples/complete/versions.tf
+++ b/examples/complete/versions.tf
@@ -1,5 +1,5 @@
terraform {
- required_version = ">= 0.13.1"
+ required_version = ">= 1.0"
required_providers {
aws = {
diff --git a/examples/multi-account/README.md b/examples/multi-account/README.md
index 170b8b9..7c5db64 100644
--- a/examples/multi-account/README.md
+++ b/examples/multi-account/README.md
@@ -19,7 +19,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
-| [terraform](#requirement\_terraform) | >= 0.13.1 |
+| [terraform](#requirement\_terraform) | >= 1.0 |
| [aws](#requirement\_aws) | >= 4.4 |
## Providers
@@ -32,8 +32,8 @@ No providers.
|------|--------|---------|
| [tgw](#module\_tgw) | ../../ | n/a |
| [tgw\_peer](#module\_tgw\_peer) | ../../ | n/a |
-| [vpc1](#module\_vpc1) | terraform-aws-modules/vpc/aws | ~> 4.0 |
-| [vpc2](#module\_vpc2) | terraform-aws-modules/vpc/aws | ~> 4.0 |
+| [vpc1](#module\_vpc1) | terraform-aws-modules/vpc/aws | ~> 5.0 |
+| [vpc2](#module\_vpc2) | terraform-aws-modules/vpc/aws | ~> 5.0 |
## Resources
diff --git a/examples/multi-account/main.tf b/examples/multi-account/main.tf
index 12ae7b8..56e0b70 100644
--- a/examples/multi-account/main.tf
+++ b/examples/multi-account/main.tf
@@ -131,7 +131,7 @@ module "tgw_peer" {
module "vpc1" {
source = "terraform-aws-modules/vpc/aws"
- version = "~> 4.0"
+ version = "~> 5.0"
name = "${local.name}-vpc1"
cidr = "10.10.0.0/16"
@@ -149,7 +149,7 @@ module "vpc1" {
module "vpc2" {
source = "terraform-aws-modules/vpc/aws"
- version = "~> 4.0"
+ version = "~> 5.0"
providers = {
aws = aws.peer
diff --git a/examples/multi-account/versions.tf b/examples/multi-account/versions.tf
index 03533eb..46b7087 100644
--- a/examples/multi-account/versions.tf
+++ b/examples/multi-account/versions.tf
@@ -1,5 +1,5 @@
terraform {
- required_version = ">= 0.13.1"
+ required_version = ">= 1.0"
required_providers {
aws = {