From 630082ffb1bfc13ce7a1e7b199bc7e104a4ed354 Mon Sep 17 00:00:00 2001 From: Cody Moore Date: Thu, 15 Oct 2020 03:15:03 -0400 Subject: [PATCH] fix: update aws provider version for dep (#32) * fix: update aws provider version for dep * Update versions.tf Co-authored-by: Vladimir * Updated README.md Co-authored-by: Vladimir Co-authored-by: actions-bot <58130806+actions-bot@users.noreply.github.com> --- README.md | 6 ++++-- docs/terraform.md | 6 ++++-- versions.tf | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) 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" }