From 7f37ff8c160e819ae6766d6bf25f0fb8cec978f5 Mon Sep 17 00:00:00 2001 From: Mykhailo Oleksiuk <110532903+ajax-mykhailo-oleksiuk@users.noreply.github.com> Date: Thu, 21 Mar 2024 19:46:28 +0200 Subject: [PATCH] fix: Restore aws to required providers (#546) --- .pre-commit-config.yaml | 1 - README.md | 1 + versions.tf | 7 +++++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ade44ffa..c67ffe84 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,7 +21,6 @@ repos: - '--args=--only=terraform_required_providers' - '--args=--only=terraform_standard_module_structure' - '--args=--only=terraform_workspace_remote' - - '--args=--only=terraform_unused_required_providers' - id: terraform_validate - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 diff --git a/README.md b/README.md index 96b23bed..37eeae0d 100644 --- a/README.md +++ b/README.md @@ -210,6 +210,7 @@ Users have the ability to: | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.0 | +| [aws](#requirement\_aws) | >= 5.36 | ## Providers diff --git a/versions.tf b/versions.tf index 7117131f..3b3b588a 100644 --- a/versions.tf +++ b/versions.tf @@ -1,3 +1,10 @@ terraform { required_version = ">= 1.0" + + required_providers { + aws = { + source = "hashicorp/aws" + version = ">= 5.36" + } + } }