From 094bebec4c19f68621ea8983580659637ed8e935 Mon Sep 17 00:00:00 2001 From: Steve Stevens Date: Mon, 24 Jul 2023 09:13:16 +0100 Subject: [PATCH] support for aws provider v5.x.x --- account_roles_creation/main.tf | 2 +- main.tf | 2 +- operator_roles_creation/main.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/account_roles_creation/main.tf b/account_roles_creation/main.tf index 6ff679c..e3b9f85 100644 --- a/account_roles_creation/main.tf +++ b/account_roles_creation/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.0" + version = ">= 4.0" } } } diff --git a/main.tf b/main.tf index 733db75..82020d7 100644 --- a/main.tf +++ b/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.0" + version = ">= 4.0" } } } diff --git a/operator_roles_creation/main.tf b/operator_roles_creation/main.tf index bd122e2..7caebd7 100644 --- a/operator_roles_creation/main.tf +++ b/operator_roles_creation/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.0" + version = ">= 4.0" } } }