From 7a6ae5fbea32aa6e5295815feb0e8b401285d915 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 02:17:43 +0000 Subject: [PATCH] chore(deps): update terraform terraform-aws-modules/iam/aws to v5.47.0 (#358) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [terraform-aws-modules/iam/aws](https://registry.terraform.io/modules/terraform-aws-modules/iam/aws) ([source](https://redirect.github.com/terraform-aws-modules/terraform-aws-iam)) | module | minor | `5.46.0` -> `5.47.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
terraform-aws-modules/terraform-aws-iam (terraform-aws-modules/iam/aws) ### [`v5.47.0`](https://redirect.github.com/terraform-aws-modules/terraform-aws-iam/blob/HEAD/CHANGELOG.md#5470-2024-10-21) [Compare Source](https://redirect.github.com/terraform-aws-modules/terraform-aws-iam/compare/v5.46.0...v5.47.0) ##### Features - Update AWS EBS CSI Driver IAM Policy ([#​530](https://redirect.github.com/terraform-aws-modules/terraform-aws-iam/issues/530)) ([1bc058c](https://redirect.github.com/terraform-aws-modules/terraform-aws-iam/commit/1bc058c749081f37a67a5d08d24b1fcec449e2f2)) ##### Bug Fixes - Update CI workflow versions to latest ([#​527](https://redirect.github.com/terraform-aws-modules/terraform-aws-iam/issues/527)) ([15fd175](https://redirect.github.com/terraform-aws-modules/terraform-aws-iam/commit/15fd17540b6db8be434759e684c1cabf20a5219a))
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Hapag-Lloyd/terraform-aws-bastion-host-ssm). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/cost/main.tf | 2 +- examples/full/main.tf | 2 +- examples/simple/main.tf | 2 +- examples/spot/main.tf | 2 +- main.tf | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/cost/main.tf b/examples/cost/main.tf index 49a33015..5d8aa588 100644 --- a/examples/cost/main.tf +++ b/examples/cost/main.tf @@ -47,7 +47,7 @@ module "bastion_host" { module "bastion_user" { source = "terraform-aws-modules/iam/aws//modules/iam-user" - version = "5.46.0" + version = "5.47.0" name = "${local.resource_prefix}-bastion" diff --git a/examples/full/main.tf b/examples/full/main.tf index 76971dd6..302121ff 100644 --- a/examples/full/main.tf +++ b/examples/full/main.tf @@ -68,7 +68,7 @@ module "kms_key" { module "bastion_user" { source = "terraform-aws-modules/iam/aws//modules/iam-user" - version = "5.46.0" + version = "5.47.0" name = "${local.resource_prefix}-bastion" diff --git a/examples/simple/main.tf b/examples/simple/main.tf index 11e32b67..6884cf34 100644 --- a/examples/simple/main.tf +++ b/examples/simple/main.tf @@ -34,7 +34,7 @@ module "bastion_host" { module "bastion_user" { source = "terraform-aws-modules/iam/aws//modules/iam-user" - version = "5.46.0" + version = "5.47.0" name = "bastion" diff --git a/examples/spot/main.tf b/examples/spot/main.tf index 23715f84..28cd7c3c 100644 --- a/examples/spot/main.tf +++ b/examples/spot/main.tf @@ -47,7 +47,7 @@ module "bastion_host" { module "bastion_user" { source = "terraform-aws-modules/iam/aws//modules/iam-user" - version = "5.46.0" + version = "5.47.0" name = "${local.resource_prefix}-bastion" diff --git a/main.tf b/main.tf index 79b8cb57..f341f32c 100644 --- a/main.tf +++ b/main.tf @@ -53,7 +53,7 @@ resource "aws_security_group_rule" "egress_ssm" { module "instance_profile_role" { source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role" - version = "5.46.0" + version = "5.47.0" count = var.instance["profile_name"] != "" ? 0 : 1