AWS IAM documentation change
Summary
Added PowerShell V5 examples for disabling MFA devices
Security assessment
While MFA management is security-related, the change documents standard device deactivation procedures rather than addressing a specific vulnerability. Proper MFA revocation is a security best practice but not evidence of a resolved issue.
Diff
diff --git a/IAM/latest/UserGuide/iam_example_iam_DeactivateMfaDevice_section.md b/IAM/latest/UserGuide/iam_example_iam_DeactivateMfaDevice_section.md index ae69eb658..366ef48dd 100644 --- a//IAM/latest/UserGuide/iam_example_iam_DeactivateMfaDevice_section.md +++ b//IAM/latest/UserGuide/iam_example_iam_DeactivateMfaDevice_section.md @@ -56,0 +57,20 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This command disables the hardware MFA device associated with the user`Bob` that has the serial number `123456789012`.** + + + Disable-IAMMFADevice -UserName "Bob" -SerialNumber "123456789012" + + +**Example 2: This command disables the virtual MFA device associated with the user`David` that has the ARN `arn:aws:iam::210987654321:mfa/David`. Note that virtual MFA device is not deleted from the account. The virtual device is still present and appears in the output of the `Get-IAMVirtualMFADevice` command. Before you can create a new virtual MFA device for the same user, you must delete the old one by using the `Remove-IAMVirtualMFADevice` command.** + + + Disable-IAMMFADevice -UserName "David" -SerialNumber "arn:aws:iam::210987654321:mfa/David" + + + * For API details, see [DeactivateMfaDevice](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +