Skip to content

Commit

Permalink
Resolves #14 cannot change password without MFA device active (#15)
Browse files Browse the repository at this point in the history
* Resolves #14 cannot change password without MFA device active

* Update CHANGELOG.md

As per request.
  • Loading branch information
jufemaiz authored and sjauld committed Aug 9, 2019
1 parent ccfe0ae commit 44cd2f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# CHANGELOG

## v0.1.1 (UNRELEASED)
## v0.1.1 (2019-08-08)

* Resolves incorrect repo path in taggings.tf
* Resolves incorrect repo path in taggings.tf.
(Ref: <https://github.com/ace-teknologi/terraform-iam/issues/12>)
* Resolves inability to change password without an MFA device activated.
(Ref: <https://github.com/ace-teknologi/terraform-iam/issues/14>)

## v0.1.0 (2019-08-05)

Expand Down
4 changes: 3 additions & 1 deletion groups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -248,16 +248,18 @@ data "aws_iam_policy_document" "self_management" {
effect = "Deny"

not_actions = [
"iam:ChangePassword",
"iam:CreateVirtualMFADevice",
"iam:CreateLoginProfile",
"iam:DeleteVirtualMFADevice",
"iam:EnableMFADevice",
"sts:GetSessionToken",
"iam:GetAccountPasswordPolicy",
"iam:GetUser",
"iam:ListMFADevices",
"iam:ListUsers",
"iam:ListVirtualMFADevices",
"iam:ResyncMFADevice",
"sts:GetSessionToken",
]

resources = ["*"]
Expand Down

0 comments on commit 44cd2f0

Please sign in to comment.