File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
5
6
## [ 2.6.0] ( https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v2.5.2...v2.6.0 ) (2022-04-11)
6
7
7
8
8
9
### Features
9
10
10
11
* Added default resources for events permissions ([ #34 ] ( https://github.com/terraform-aws-modules/terraform-aws-step-functions/issues/34 ) ) ([ 698e4c1] ( https://github.com/terraform-aws-modules/terraform-aws-step-functions/commit/698e4c1a4640ee80d810bd8f7e6e4db3acfd2b47 ) )
11
12
13
+
12
14
### [ 2.5.2] ( https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v2.5.1...v2.5.2 ) (2022-01-14)
13
15
14
16
@@ -23,6 +25,7 @@ All notable changes to this project will be documented in this file.
23
25
24
26
* update CI/CD process to enable auto-release workflow ([ #26 ] ( https://github.com/terraform-aws-modules/terraform-aws-step-functions/issues/26 ) ) ([ 660d759] ( https://github.com/terraform-aws-modules/terraform-aws-step-functions/commit/660d759b68d2ae9817fd1bc138885cddc58dfd2e ) )
25
27
28
+
26
29
<a name =" v2.5.0 " ></a >
27
30
## [ v2.5.0] - 2021-09-15
28
31
Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ resource "aws_iam_policy" "service" {
110
110
111
111
name = " ${ local . role_name } -${ each . key } "
112
112
policy = data. aws_iam_policy_document . service [each . key ]. json
113
+ tags = var. tags
113
114
}
114
115
115
116
resource "aws_iam_policy_attachment" "service" {
@@ -130,6 +131,7 @@ resource "aws_iam_policy" "additional_json" {
130
131
131
132
name = local. role_name
132
133
policy = var. policy_json
134
+ tags = var. tags
133
135
}
134
136
135
137
resource "aws_iam_policy_attachment" "additional_json" {
@@ -149,6 +151,7 @@ resource "aws_iam_policy" "additional_jsons" {
149
151
150
152
name = " ${ local . role_name } -${ count . index } "
151
153
policy = var. policy_jsons [count . index ]
154
+ tags = var. tags
152
155
}
153
156
154
157
resource "aws_iam_policy_attachment" "additional_jsons" {
@@ -232,6 +235,7 @@ resource "aws_iam_policy" "additional_inline" {
232
235
233
236
name = " ${ local . role_name } -inline"
234
237
policy = data. aws_iam_policy_document . additional_inline [0 ]. json
238
+ tags = var. tags
235
239
}
236
240
237
241
resource "aws_iam_policy_attachment" "additional_inline" {
@@ -273,6 +277,7 @@ resource "aws_iam_policy" "logs" {
273
277
274
278
name = " ${ local . role_name } -logs"
275
279
policy = data. aws_iam_policy_document . logs [0 ]. json
280
+ tags = var. tags
276
281
}
277
282
278
283
resource "aws_iam_policy_attachment" "logs" {
You can’t perform that action at this time.
0 commit comments