diff --git a/CHANGELOG.md b/CHANGELOG.md index aec49e2..40cae45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ All notable changes to this project will be documented in this file. + ## [2.6.0](https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v2.5.2...v2.6.0) (2022-04-11) @@ -9,6 +10,7 @@ All notable changes to this project will be documented in this file. * 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)) + ### [2.5.2](https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v2.5.1...v2.5.2) (2022-01-14) @@ -23,6 +25,7 @@ All notable changes to this project will be documented in this file. * 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)) + ## [v2.5.0] - 2021-09-15 diff --git a/main.tf b/main.tf index d6628e6..b0f5293 100644 --- a/main.tf +++ b/main.tf @@ -110,6 +110,7 @@ resource "aws_iam_policy" "service" { name = "${local.role_name}-${each.key}" policy = data.aws_iam_policy_document.service[each.key].json + tags = var.tags } resource "aws_iam_policy_attachment" "service" { @@ -130,6 +131,7 @@ resource "aws_iam_policy" "additional_json" { name = local.role_name policy = var.policy_json + tags = var.tags } resource "aws_iam_policy_attachment" "additional_json" { @@ -149,6 +151,7 @@ resource "aws_iam_policy" "additional_jsons" { name = "${local.role_name}-${count.index}" policy = var.policy_jsons[count.index] + tags = var.tags } resource "aws_iam_policy_attachment" "additional_jsons" { @@ -232,6 +235,7 @@ resource "aws_iam_policy" "additional_inline" { name = "${local.role_name}-inline" policy = data.aws_iam_policy_document.additional_inline[0].json + tags = var.tags } resource "aws_iam_policy_attachment" "additional_inline" { @@ -273,6 +277,7 @@ resource "aws_iam_policy" "logs" { name = "${local.role_name}-logs" policy = data.aws_iam_policy_document.logs[0].json + tags = var.tags } resource "aws_iam_policy_attachment" "logs" {