diff --git a/README.md b/README.md index 8580f29..cc8d6b7 100644 --- a/README.md +++ b/README.md @@ -124,12 +124,13 @@ Available targets: ``` + ## Requirements | Name | Version | |------|---------| | terraform | >= 0.12.0, < 0.14.0 | -| aws | ~> 2.0 | +| aws | >= 2.0, < 4.0.0 | | local | ~> 1.3 | | template | ~> 2.0 | @@ -137,7 +138,7 @@ Available targets: | Name | Version | |------|---------| -| aws | ~> 2.0 | +| aws | >= 2.0, < 4.0.0 | ## Inputs @@ -168,6 +169,7 @@ Available targets: | accept\_status | The status of the VPC peering connection request | | connection\_id | VPC peering connection ID | + diff --git a/docs/terraform.md b/docs/terraform.md index 62eadcd..c865ced 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -1,9 +1,10 @@ + ## Requirements | Name | Version | |------|---------| | terraform | >= 0.12.0, < 0.14.0 | -| aws | ~> 2.0 | +| aws | >= 2.0, < 4.0.0 | | local | ~> 1.3 | | template | ~> 2.0 | @@ -11,7 +12,7 @@ | Name | Version | |------|---------| -| aws | ~> 2.0 | +| aws | >= 2.0, < 4.0.0 | ## Inputs @@ -42,3 +43,4 @@ | accept\_status | The status of the VPC peering connection request | | connection\_id | VPC peering connection ID | + diff --git a/versions.tf b/versions.tf index dd28587..1978040 100644 --- a/versions.tf +++ b/versions.tf @@ -2,7 +2,7 @@ terraform { required_version = ">= 0.12.0, < 0.14.0" required_providers { - aws = "~> 2.0" + aws = ">= 2.0, < 4.0.0" template = "~> 2.0" local = "~> 1.3" }