From 7a0e3e3c20b270b6f4c8b202fdacc5aa6151be60 Mon Sep 17 00:00:00 2001 From: Bryant Biggs Date: Thu, 8 Dec 2022 09:37:42 -0500 Subject: [PATCH] fix: Set correct version of AWS provider on module root (#126) --- .pre-commit-config.yaml | 4 ++-- README.md | 4 ++-- versions.tf | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 314c02b..75deea3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/antonbabenko/pre-commit-terraform - rev: v1.76.0 + rev: v1.77.0 hooks: - id: terraform_fmt - id: terraform_wrapper_module_for_each @@ -24,7 +24,7 @@ repos: - '--args=--only=terraform_standard_module_structure' - '--args=--only=terraform_workspace_remote' - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.4.0 hooks: - id: check-merge-conflict - id: end-of-file-fixer diff --git a/README.md b/README.md index 5e976ce..1a9a753 100644 --- a/README.md +++ b/README.md @@ -170,13 +170,13 @@ module "acm" { | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.0 | -| [aws](#requirement\_aws) | >= 4.12 | +| [aws](#requirement\_aws) | >= 4.40 | ## Providers | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 4.12 | +| [aws](#provider\_aws) | >= 4.40 | ## Modules diff --git a/versions.tf b/versions.tf index e221f94..fa875db 100644 --- a/versions.tf +++ b/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.12" + version = ">= 4.40" } } }