Skip to content

Commit 2005687

Browse files
authored
Update module to remove 0.14 limit (#6)
1 parent 2087321 commit 2005687

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v3.2.0
3+
rev: v3.3.0
44
hooks:
55
- id: check-added-large-files
66
args: ['--maxkb=500']
@@ -18,8 +18,8 @@ repos:
1818
args: ['--allow-missing-credentials']
1919
- id: trailing-whitespace
2020
- repo: git://github.com/antonbabenko/pre-commit-terraform
21-
rev: v1.31.0
21+
rev: v1.44.0
2222
hooks:
2323
- id: terraform_fmt
2424
- id: terraform_docs
25-
- id: terraform_tflint
25+
- id: terraform_tflint

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [linkedin](http
6868

6969
| Name | Version |
7070
|------|---------|
71-
| terraform | >= 0.12.6, < 0.14 |
72-
| aws | >= 2.41, < 4.0 |
71+
| terraform | >= 0.12.6 |
72+
| aws | >= 2.41 |
7373

7474
## Providers
7575

7676
| Name | Version |
7777
|------|---------|
78-
| aws | >= 2.41, < 4.0 |
78+
| aws | >= 2.41 |
7979

8080
## Inputs
8181

versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = ">= 0.12.6, < 0.14"
2+
required_version = ">= 0.12.6"
33

44
required_providers {
5-
aws = ">= 2.41, < 4.0"
5+
aws = ">= 2.41"
66
}
77
}

0 commit comments

Comments
 (0)