From 8d4fe055632fec79a5cfd67052822b5fc238d10b Mon Sep 17 00:00:00 2001 From: Mikhail Naletov <36846182+okgolove@users.noreply.github.com> Date: Thu, 12 Nov 2020 12:10:18 +0200 Subject: [PATCH 1/5] Update versions.tf --- versions.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.tf b/versions.tf index 8cff2e69..ba50f8ff 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" local = "~> 1.3" From 5aec389d1f33def25e528943b7c0e0d4ca9f1674 Mon Sep 17 00:00:00 2001 From: Mikhail Naletov Date: Mon, 16 Nov 2020 23:36:56 +0200 Subject: [PATCH 2/5] Allow Terraform 0.14 --- versions.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.tf b/versions.tf index ba50f8ff..24ad95c3 100644 --- a/versions.tf +++ b/versions.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 0.12.0, < 0.14.0" + required_version = ">= 0.12.0" required_providers { aws = ">= 2.0" From 26e2275b53d6e84ee1e5b7f82298e11b4743ee1c Mon Sep 17 00:00:00 2001 From: Mikhail Naletov <36846182+okgolove@users.noreply.github.com> Date: Tue, 17 Nov 2020 12:09:17 +0200 Subject: [PATCH 3/5] Use gte for all providers Co-authored-by: Andriy Knysh --- versions.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/versions.tf b/versions.tf index 24ad95c3..64e58315 100644 --- a/versions.tf +++ b/versions.tf @@ -3,8 +3,8 @@ terraform { required_providers { aws = ">= 2.0" - template = "~> 2.0" - null = "~> 2.0" - local = "~> 1.3" + template = ">= 2.0" + null = ">= 2.0" + local = ">= 1.3" } } From 956c9fac9793ce85344c854944db573aa999d560 Mon Sep 17 00:00:00 2001 From: Mikhail Naletov Date: Tue, 17 Nov 2020 19:17:44 +0200 Subject: [PATCH 4/5] Modify example versions --- examples/complete/versions.tf | 10 +++++----- examples/with_cognito_authentication/versions.tf | 10 +++++----- examples/with_google_oidc_authentication/versions.tf | 10 +++++----- examples/without_authentication/versions.tf | 10 +++++----- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/examples/complete/versions.tf b/examples/complete/versions.tf index 8cff2e69..64e58315 100644 --- a/examples/complete/versions.tf +++ b/examples/complete/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" } } diff --git a/examples/with_cognito_authentication/versions.tf b/examples/with_cognito_authentication/versions.tf index 8cff2e69..64e58315 100644 --- a/examples/with_cognito_authentication/versions.tf +++ b/examples/with_cognito_authentication/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" } } diff --git a/examples/with_google_oidc_authentication/versions.tf b/examples/with_google_oidc_authentication/versions.tf index 8cff2e69..64e58315 100644 --- a/examples/with_google_oidc_authentication/versions.tf +++ b/examples/with_google_oidc_authentication/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" } } diff --git a/examples/without_authentication/versions.tf b/examples/without_authentication/versions.tf index 8cff2e69..64e58315 100644 --- a/examples/without_authentication/versions.tf +++ b/examples/without_authentication/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" } } From add9d5877f187a85ab813dbe0bfa1486c19f0074 Mon Sep 17 00:00:00 2001 From: actions-bot <58130806+actions-bot@users.noreply.github.com> Date: Tue, 17 Nov 2020 19:29:33 +0000 Subject: [PATCH 5/5] Updated README.md --- README.md | 12 ++++++------ docs/terraform.md | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 0ad3161b..1b19d934 100644 --- a/README.md +++ b/README.md @@ -129,17 +129,17 @@ Available targets: | 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 diff --git a/docs/terraform.md b/docs/terraform.md index 7bc0b0b6..13b50f9c 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -3,17 +3,17 @@ | 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