Skip to content

Commit

Permalink
Feature/v3 provider support (#6)
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 c3f71bf commit 2ee546d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 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.29.0
rev: v1.31.0
hooks:
- id: terraform_fmt
- id: terraform_docs
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ All notable changes to this project will be documented in this file.
<a name="unreleased"></a>
## [Unreleased]

- update docs and add chglog
- Update module versions to support v3 provider
- Feature/updates ([#5](https://github.com/umotif-public/terraform-aws-vpc-flow-logs/issues/5))


<a name="1.1.0"></a>
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,14 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http

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

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.55 |
| aws | >= 2.55, < 4.0 |

## Inputs

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

required_providers {
aws = "~> 2.55"
aws = ">= 2.55, < 4.0"
}
}

0 comments on commit 2ee546d

Please sign in to comment.