Skip to content

Commit

Permalink
Merge pull request #156 from cgarcia2863/update_aws_deprecated_policy
Browse files Browse the repository at this point in the history
  • Loading branch information
lorengordon authored Jun 3, 2022
2 parents 2dac231 + 423f62f commit 46a1b8f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.1
current_version = 3.0.2
commit = True
message = Bumps version to {new_version}
tag = False
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

### 3.0.2

**Released**: 2022.06.03

**Commit Delta**: [Change from 3.0.1 release](https://github.com/plus3it/terraform-aws-tardigrade-config/compare/3.0.1...3.0.2)

**Summary**:

* Uses newer service role policy as prior policy is being deprecated

### 3.0.1

**Released**: 2021.08.05
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ resource "aws_iam_role_policy_attachment" "this" {
count = local.create_iam_role ? 1 : 0

role = aws_iam_role.this[0].name
policy_arn = "arn:${data.aws_partition.current.partition}:iam::aws:policy/service-role/AWSConfigRole"
policy_arn = "arn:${data.aws_partition.current.partition}:iam::aws:policy/service-role/AWS_ConfigRole"
}

resource "aws_sns_topic" "this" {
Expand Down

0 comments on commit 46a1b8f

Please sign in to comment.