From d4938fc595b4ae167efe37912f3d6de6e71fc565 Mon Sep 17 00:00:00 2001 From: Melissa Greenbaum <69476188+magreenbaum@users.noreply.github.com> Date: Wed, 4 Sep 2024 19:55:07 -0400 Subject: [PATCH 1/2] fix: Add `depends_on` policy and policy attachments for pipes (#133) --- main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.tf b/main.tf index 4047fb8..a53b231 100644 --- a/main.tf +++ b/main.tf @@ -810,4 +810,9 @@ resource "aws_pipes_pipe" "this" { } tags = merge(var.tags, try(each.value.tags, {})) + + depends_on = [ + aws_iam_policy.service, + aws_iam_policy_attachment.service + ] } From 506309709bdc7c604cc697a6ecd47ba670f0a937 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 4 Sep 2024 23:55:32 +0000 Subject: [PATCH 2/2] chore(release): version 3.9.1 [skip ci] ## [3.9.1](https://github.com/terraform-aws-modules/terraform-aws-eventbridge/compare/v3.9.0...v3.9.1) (2024-09-04) ### Bug Fixes * Add `depends_on` policy and policy attachments for pipes ([#133](https://github.com/terraform-aws-modules/terraform-aws-eventbridge/issues/133)) ([d4938fc](https://github.com/terraform-aws-modules/terraform-aws-eventbridge/commit/d4938fc595b4ae167efe37912f3d6de6e71fc565)) --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f99d42..438fa63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [3.9.1](https://github.com/terraform-aws-modules/terraform-aws-eventbridge/compare/v3.9.0...v3.9.1) (2024-09-04) + + +### Bug Fixes + +* Add `depends_on` policy and policy attachments for pipes ([#133](https://github.com/terraform-aws-modules/terraform-aws-eventbridge/issues/133)) ([d4938fc](https://github.com/terraform-aws-modules/terraform-aws-eventbridge/commit/d4938fc595b4ae167efe37912f3d6de6e71fc565)) + ## [3.9.0](https://github.com/terraform-aws-modules/terraform-aws-eventbridge/compare/v3.8.0...v3.9.0) (2024-08-16)