Skip to content

Commit

Permalink
Feature/v3 provider support (#1)
Browse files Browse the repository at this point in the history
* Update module versions to support v3 provider

* update CHANGELOG
  • Loading branch information
marcincuber authored Aug 5, 2020
1 parent 8c9304b commit 74b9551
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
4 changes: 2 additions & 2 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: v2.5.0
rev: v3.2.0
hooks:
- id: check-added-large-files
args: ['--maxkb=500']
Expand All @@ -18,7 +18,7 @@ repos:
args: ['--allow-missing-credentials']
- id: trailing-whitespace
- repo: git://github.com/antonbabenko/pre-commit-terraform
rev: v1.30.0
rev: v1.31.0
hooks:
- id: terraform_fmt
- id: terraform_docs
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
<a name="unreleased"></a>
## [Unreleased]

- Update module versions to support v3 provider
- add CHANGELOG.md


<a name="1.0.0"></a>
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,16 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
## Requirements

No requirements.
| Name | Version |
|------|---------|
| terraform | >= 0.12.6, < 0.14 |
| aws | >= 2.41, < 4.0 |

## Providers

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

## Inputs

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

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

0 comments on commit 74b9551

Please sign in to comment.