Skip to content

Commit

Permalink
Update module to remove 0.14 limit (#8)
Browse files Browse the repository at this point in the history
* Update module to remove 0.14 limit

* Update pre-commit config
  • Loading branch information
Ohid25 committed Nov 9, 2020
1 parent 7aaf7f7 commit c233d6d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
rev: v3.3.0
hooks:
- id: check-added-large-files
args: ['--maxkb=500']
Expand All @@ -18,8 +18,8 @@ repos:
args: ['--allow-missing-credentials']
- id: trailing-whitespace
- repo: git://github.com/antonbabenko/pre-commit-terraform
rev: v1.36.0
rev: v1.44.0
hooks:
- id: terraform_fmt
- id: terraform_docs
- id: terraform_tflint
- id: terraform_tflint
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http

| Name | Version |
|------|---------|
| terraform | >= 0.12.6, < 0.14 |
| aws | >= 2.63, < 4.0 |
| terraform | >= 0.12.6 |
| aws | >= 2.63 |

## Providers

| Name | Version |
|------|---------|
| aws | >= 2.63, < 4.0 |
| aws | >= 2.63 |
| random | n/a |

## Inputs
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_version = ">= 0.12.6, < 0.14"
required_version = ">= 0.12.6"

required_providers {
aws = ">= 3.3, < 4.0"
aws = ">= 3.3"
}
}

0 comments on commit c233d6d

Please sign in to comment.