From c15a245c7cd563d60ca9f79a0bcc9afc4be2c5c4 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sat, 12 Apr 2025 08:10:20 +0200 Subject: [PATCH] upgrade `tofu-module-aws-iam-role` to `1.1.0`. --- CHANGELOG.md | 8 +++++++- README.md | 2 +- main.tf | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d511684..d93da33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,14 @@ All notable changes to this project will be documented in this file. +## 1.0.1 - 2025-04-12 + +### Changed + +- Upgrade `tofu-module-aws-iam-role` to `1.1.0`. + ## 1.0.0 - 2025-04-11 ### Added -- initial import +- Initial import. diff --git a/README.md b/README.md index bff3aa4..639d34b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ and continuous integration tasks on AWS. ``` hcl module "aws_iam_ci_user" { - source = "git::ssh://git@git.adyxax.org/adyxax/tofu-module-aws-iam-ci-user?depth=1&ref=1.0.0" + source = "git::ssh://git@git.adyxax.org/adyxax/tofu-module-aws-iam-ci-user?depth=1&ref=1.0.1" core_policy_statements = jsonencode([ { diff --git a/main.tf b/main.tf index e5adc9e..6063aa8 100644 --- a/main.tf +++ b/main.tf @@ -31,7 +31,7 @@ module "aws_iam_role_core" { module "aws_iam_role_test" { providers = { aws = aws.tests } - source = "git::ssh://git@git.adyxax.org/adyxax/tofu-module-aws-iam-role?depth=1&ref=1.0.0" + source = "git::ssh://git@git.adyxax.org/adyxax/tofu-module-aws-iam-role?depth=1&ref=1.1.0" name = var.name policy_statements = var.tests_policy_statements