From 334f2f7f41e20f8532f0e609e7286b87f31a5f6d Mon Sep 17 00:00:00 2001 From: Volodymyr Zahorniak <7808206+zahorniak@users.noreply.github.com> Date: Mon, 4 Mar 2024 22:05:02 +0200 Subject: [PATCH] fix: Fix provider version for `staging` and `continuous_deployment_policy_id` params (#132) --- README.md | 4 ++-- versions.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7171ec8..66b6683 100644 --- a/README.md +++ b/README.md @@ -107,13 +107,13 @@ ordered_cache_behavior = [{ | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 0.13.1 | -| [aws](#requirement\_aws) | >= 4.29 | +| [aws](#requirement\_aws) | >= 5.12.0 | ## Providers | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 4.29 | +| [aws](#provider\_aws) | >= 5.12.0 | ## Modules diff --git a/versions.tf b/versions.tf index 6c1e911..a7b2540 100644 --- a/versions.tf +++ b/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.29" + version = ">= 5.12.0" } } }