From c920cbc7228d70ae7f79ad1299db3026f19a2844 Mon Sep 17 00:00:00 2001 From: Benjamin Clark Date: Sat, 14 Sep 2024 10:41:40 +0100 Subject: [PATCH] Change version requirements --- README.md | 2 +- examples/elastic_container_registry/main.tf | 2 +- main.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4c4cdd8..6d657f0 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ the module itself, and the [examples](#examples) section which has examples of h | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | ~> 1.5.0 | -| [aws](#requirement\_aws) | ~> 4.63.0 | +| [aws](#requirement\_aws) | >= 5.61.0 | ## Providers diff --git a/examples/elastic_container_registry/main.tf b/examples/elastic_container_registry/main.tf index d891059..0f2d348 100644 --- a/examples/elastic_container_registry/main.tf +++ b/examples/elastic_container_registry/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.63.0" + version = ">= 5.61.0" } } required_version = "~> 1.5.0" diff --git a/main.tf b/main.tf index 2a66c1e..f022823 100644 --- a/main.tf +++ b/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.63.0" + version = ">= 5.61.0" } } required_version = "~> 1.5.0"