diff --git a/README.md b/README.md index 0b48cfa..b7a5a40 100644 --- a/README.md +++ b/README.md @@ -154,21 +154,22 @@ Available targets: ``` + ## Requirements | Name | Version | |------|---------| -| terraform | >= 0.12.0, < 0.14.0 | -| aws | ~> 2.0 | -| local | ~> 1.3 | -| null | ~> 2.0 | -| template | ~> 2.0 | +| terraform | >= 0.12.0 | +| aws | >= 2.0 | +| local | >= 1.3 | +| null | >= 2.0 | +| template | >= 2.0 | ## Providers | Name | Version | |------|---------| -| aws | ~> 2.0 | +| aws | >= 2.0 | ## Inputs @@ -243,6 +244,7 @@ Available targets: | listener\_arns | A list of all the listener ARNs | | security\_group\_id | The security group ID of the ALB | + diff --git a/docs/terraform.md b/docs/terraform.md index 752c8bc..125d33b 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -1,18 +1,19 @@ + ## Requirements | Name | Version | |------|---------| -| terraform | >= 0.12.0, < 0.14.0 | -| aws | ~> 2.0 | -| local | ~> 1.3 | -| null | ~> 2.0 | -| template | ~> 2.0 | +| terraform | >= 0.12.0 | +| aws | >= 2.0 | +| local | >= 1.3 | +| null | >= 2.0 | +| template | >= 2.0 | ## Providers | Name | Version | |------|---------| -| aws | ~> 2.0 | +| aws | >= 2.0 | ## Inputs @@ -87,3 +88,4 @@ | listener\_arns | A list of all the listener ARNs | | security\_group\_id | The security group ID of the ALB | + diff --git a/versions.tf b/versions.tf index 8cff2e6..64e5831 100644 --- a/versions.tf +++ b/versions.tf @@ -1,10 +1,10 @@ terraform { - required_version = ">= 0.12.0, < 0.14.0" + required_version = ">= 0.12.0" required_providers { - aws = "~> 2.0" - template = "~> 2.0" - null = "~> 2.0" - local = "~> 1.3" + aws = ">= 2.0" + template = ">= 2.0" + null = ">= 2.0" + local = ">= 1.3" } }