Skip to content

Commit ebf45fc

Browse files
committed
Merge branch 'master' of github.com:rabiloo/terraform-aws-ecs
2 parents da430e8 + 6a206b7 commit ebf45fc

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

.github/workflows/auto-merge-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- name: Dependabot metadata
1717
id: metadata
18-
uses: dependabot/fetch-metadata@v1.3.6
18+
uses: dependabot/fetch-metadata@v1.5.1
1919
with:
2020
github-token: "${{ secrets.GITHUB_TOKEN }}"
2121

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](https://github.com/rabiloo/terraform-aws-ecs/compare/v0.2.0...master)
8+
## [Unreleased](https://github.com/rabiloo/terraform-aws-ecs/compare/v0.2.1...master)
99

1010
### Added
1111

@@ -32,6 +32,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3232
- Nothing
3333

3434
<!-- New Release notes will be placed here automatically -->
35+
## [v0.2.1](https://github.com/rabiloo/terraform-aws-ecs/compare/v0.2.0...v0.2.1) - 2023-04-02
36+
37+
### Add
38+
39+
- Submodule `ecs-execution-role`
40+
- Submodule `ecs-task-role`
41+
42+
### Change
43+
44+
- Update required AWS provider version to `>=4.0`
45+
3546
## [v0.2.0](https://github.com/rabiloo/terraform-aws-ecs/compare/v0.1.1...v0.2.0) - 2023-01-30
3647

3748
### Changed

modules/ecs-execution-role/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ data "aws_iam_policy_document" "policy" {
5757

5858
module "policy" {
5959
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
60-
version = "~>5.14.0"
60+
version = "~>5.16.0"
6161

6262
name = "${var.name}-policies"
6363
policy = data.aws_iam_policy_document.policy.json
@@ -66,7 +66,7 @@ module "policy" {
6666

6767
module "this" {
6868
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
69-
version = "~>5.14.0"
69+
version = "~>5.16.0"
7070

7171
role_name = var.name
7272
role_path = var.path

modules/ecs-task-role/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ data "aws_iam_policy_document" "policy" {
105105

106106
module "policy" {
107107
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
108-
version = "~>5.14.0"
108+
version = "~>5.16.0"
109109

110110
name = "${var.name}-policies"
111111
policy = data.aws_iam_policy_document.policy.json
@@ -114,7 +114,7 @@ module "policy" {
114114

115115
module "this" {
116116
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
117-
version = "~>5.14.0"
117+
version = "~>5.16.0"
118118

119119
role_name = var.name
120120
role_path = var.path

0 commit comments

Comments
 (0)