Skip to content

Commit bf32511

Browse files
authored
Feature/v3 provider support (#4)
* Update module versions to support v3 provider * update CHANGELOG
1 parent 537f6d4 commit bf32511

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 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: v2.5.0
3+
rev: v3.2.0
44
hooks:
55
- id: check-added-large-files
66
args: ['--maxkb=500']
@@ -18,7 +18,7 @@ repos:
1818
args: ['--allow-missing-credentials']
1919
- id: trailing-whitespace
2020
- repo: git://github.com/antonbabenko/pre-commit-terraform
21-
rev: v1.29.0
21+
rev: v1.31.0
2222
hooks:
2323
- id: terraform_fmt
2424
- id: terraform_docs

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ All notable changes to this project will be documented in this file.
55
<a name="unreleased"></a>
66
## [Unreleased]
77

8-
- update docs and add chglog
8+
- Update module versions to support v3 provider
9+
- Feature/updates ([#3](https://github.com/umotif-public/terraform-aws-elasticache-redis/issues/3))
910
- add git hooks and update docs
1011
- Update README.md
1112

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,16 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [linkedin](http
6666
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
6767
## Requirements
6868

69-
No requirements.
69+
| Name | Version |
70+
|------|---------|
71+
| terraform | >= 0.12.6, < 0.14 |
72+
| aws | >= 2.41, < 4.0 |
7073

7174
## Providers
7275

7376
| Name | Version |
7477
|------|---------|
75-
| aws | n/a |
78+
| aws | >= 2.41, < 4.0 |
7679

7780
## Inputs
7881

versions.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
terraform {
2+
required_version = ">= 0.12.6, < 0.14"
3+
4+
required_providers {
5+
aws = ">= 2.41, < 4.0"
6+
}
7+
}

0 commit comments

Comments
 (0)