Skip to content

Commit 4ef2401

Browse files
authored
Feature/v3 provider support (#21)
* Update module versions to support v3 provider * update CHANGELOG
1 parent 539fa50 commit 4ef2401

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

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

8+
- Update module versions to support v3 provider
9+
10+
11+
<a name="4.0.0"></a>
12+
## [4.0.0] - 2020-08-03
13+
14+
- Update README.md
15+
- Add full for volume configuration ([#20](https://github.com/umotif-public/terraform-aws-ecs-fargate/issues/20))
816

917

1018
<a name="3.0.2"></a>
@@ -129,7 +137,8 @@ All notable changes to this project will be documented in this file.
129137
- Initial commit
130138

131139

132-
[Unreleased]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/3.0.2...HEAD
140+
[Unreleased]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/4.0.0...HEAD
141+
[4.0.0]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/3.0.2...4.0.0
133142
[3.0.2]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/3.0.1...3.0.2
134143
[3.0.1]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/3.0.0...3.0.1
135144
[3.0.0]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/2.0.0...3.0.0

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,14 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
7575

7676
| Name | Version |
7777
|------|---------|
78-
| aws | ~> 2.68 |
78+
| terraform | >= 0.12.6, < 0.14 |
79+
| aws | >= 2.68, < 4.0 |
7980

8081
## Providers
8182

8283
| Name | Version |
8384
|------|---------|
84-
| aws | ~> 2.68 |
85+
| aws | >= 2.68, < 4.0 |
8586
| null | n/a |
8687

8788
## Inputs

versions.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
terraform {
2+
required_version = ">= 0.12.6, < 0.14"
3+
24
required_providers {
3-
aws = "~> 2.68"
5+
aws = ">= 2.68, < 4.0"
46
}
57
}

0 commit comments

Comments
 (0)