Skip to content

Commit 7a0e3e3

Browse files
authored
fix: Set correct version of AWS provider on module root (#126)
1 parent 49cc1d7 commit 7a0e3e3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.76.0
3+
rev: v1.77.0
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_wrapper_module_for_each
@@ -24,7 +24,7 @@ repos:
2424
- '--args=--only=terraform_standard_module_structure'
2525
- '--args=--only=terraform_workspace_remote'
2626
- repo: https://github.com/pre-commit/pre-commit-hooks
27-
rev: v4.3.0
27+
rev: v4.4.0
2828
hooks:
2929
- id: check-merge-conflict
3030
- id: end-of-file-fixer

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,13 @@ module "acm" {
170170
| Name | Version |
171171
|------|---------|
172172
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
173-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.12 |
173+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.40 |
174174

175175
## Providers
176176

177177
| Name | Version |
178178
|------|---------|
179-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.12 |
179+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.40 |
180180

181181
## Modules
182182

versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.12"
7+
version = ">= 4.40"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)