diff --git a/CHANGELOG.md b/CHANGELOG.md index 4275883..eef7c92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/common/version.tf b/common/version.tf index c518e5c..19a45aa 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "1.7.2" + _module_version = "1.7.3" } diff --git a/iam-general-policies/main.tf b/iam-general-policies/main.tf index 5a63c53..53441a7 100644 --- a/iam-general-policies/main.tf +++ b/iam-general-policies/main.tf @@ -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 } } }