diff --git a/README.md b/README.md index 37c700d..9e5746c 100644 --- a/README.md +++ b/README.md @@ -131,12 +131,13 @@ Available targets: ``` + ## Requirements | Name | Version | |------|---------| | terraform | >= 0.12.0, < 0.14.0 | -| aws | ~> 2.0 | +| aws | >= 2.0 | | null | ~> 2.0 | | template | ~> 2.0 | @@ -144,7 +145,7 @@ Available targets: | Name | Version | |------|---------| -| aws | ~> 2.0 | +| aws | >= 2.0 | ## Inputs @@ -229,6 +230,7 @@ Available targets: | launch\_template\_arn | The ARN of the launch template | | launch\_template\_id | The ID of the launch template | + diff --git a/docs/terraform.md b/docs/terraform.md index 0e21d2c..3fa209f 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 | | null | ~> 2.0 | | template | ~> 2.0 | @@ -11,7 +12,7 @@ | Name | Version | |------|---------| -| aws | ~> 2.0 | +| aws | >= 2.0 | ## Inputs @@ -96,3 +97,4 @@ | launch\_template\_arn | The ARN of the launch template | | launch\_template\_id | The ID of the launch template | + diff --git a/versions.tf b/versions.tf index 298a3d1..6314ba4 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" template = "~> 2.0" null = "~> 2.0" }