Skip to content

Commit

Permalink
v1.7.3: fix bad arn
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 24, 2021
1 parent b62b53a commit c4f1e2f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,15 @@

* v1.7.0 -- 20210316
- module: ses-domain

* v1.7.1 -- 20210318
- iam-general-policies
- add `ip-restriction`

* v1.7.2 -- 20210322
- iam-general-policies
- add IAMUserChangePassword

* v1.7.3 -- 20210324
- iam-general-policies
- fix bad arn
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.7.2"
_module_version = "1.7.3"
}
2 changes: 1 addition & 1 deletion iam-general-policies/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ locals {
"description" = v["description"]
"policy" = v["policy"]
"create_policy" = v["create_policy"]
"policy_arn" = aws_iam_policy.general[k]
"policy_arn" = aws_iam_policy.general[k].arn
}
}
}
Expand Down

0 comments on commit c4f1e2f

Please sign in to comment.