Skip to content

Commit

Permalink
Feature/v3 provider support (#3)
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 37f5cf1 commit 4a69f21
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 11 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: v3.1.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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
<a name="unreleased"></a>
## [Unreleased]

- Update module versions to support v3 provider


<a name="1.2.0"></a>
## [1.2.0] - 2020-05-21

- Update security group configuration with lifecycle and revoke ([#2](https://github.com/umotif-public/terraform-aws-rds-aurora/issues/2))


<a name="1.1.0"></a>
Expand All @@ -29,6 +36,7 @@ All notable changes to this project will be documented in this file.
- Initial commit


[Unreleased]: https://github.com/umotif-public/terraform-aws-rds-aurora/compare/1.1.0...HEAD
[Unreleased]: https://github.com/umotif-public/terraform-aws-rds-aurora/compare/1.2.0...HEAD
[1.2.0]: https://github.com/umotif-public/terraform-aws-rds-aurora/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/umotif-public/terraform-aws-rds-aurora/compare/1.0.1...1.1.0
[1.0.1]: https://github.com/umotif-public/terraform-aws-rds-aurora/compare/1.0.0...1.0.1
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,16 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http

| Name | Version |
|------|---------|
| terraform | ~> 0.12.6 |
| aws | ~> 2.45 |
| random | ~> 2.2 |
| terraform | >= 0.12.6, < 0.14 |
| aws | >= 2.45, < 4.0 |
| random | >= 2.2 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.45 |
| random | ~> 2.2 |
| aws | >= 2.45, < 4.0 |
| random | >= 2.2 |

## Inputs

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

required_providers {
aws = "~> 2.45"
random = "~> 2.2"
aws = ">= 2.45, < 4.0"
random = ">= 2.2"
}
}

0 comments on commit 4a69f21

Please sign in to comment.