Find unused Amazon credentials - Amazon Identity and Access Management
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Find unused Amazon credentials

To increase the security of your Amazon Web Services account, remove IAM user credentials (that is, passwords and access keys) that are not needed. For example, when users leave your organization or no longer need Amazon access, find the credentials that they were using and ensure that they are no longer operational. Ideally, you delete credentials if they are no longer needed. You can always recreate them at a later date if the need arises. At the very least, you should change the password or deactivate the access keys so that the former users no longer have access.

Of course, the definition of unused can vary and usually means a credential that has not been used within a specified period of time.

Finding unused passwords

You can use the Amazon Web Services Management Console to view password usage information for your users. If you have a large number of users, you can use the console to download a credential report with information about when each user last used their console password. You can also access the information from the Amazon CLI or the IAM API.

To find unused passwords (console)
  1. Sign in to the Amazon Web Services Management Console and open the IAM console at https://console.amazonaws.cn/iam/.

  2. In the navigation pane, choose Users.

  3. If necessary, add the Console last sign-in column to the users table:

    1. Above the table on the far right, choose the settings icon ( 
                  Settings icon
                ).

    2. In Select visible columns, select Console last sign-in.

    3. Choose Confirm to return to the list of users.

  4. The Console last sign-in column shows the date when the user last signed in to Amazon through the console. You can use this information to find users with passwords who have not signed in for more than a specified period of time. The column displays Never for users with passwords that have never signed in. None indicates users with no passwords. Passwords that have not been used recently might be good candidates for removal.

    Important

    Due to a service issue, password last used data does not include password use from May 3rd 2018 22:50 PDT to May 23rd 2018 14:08 PDT. This affects last sign-in dates shown in the IAM console and password last used dates in the IAM credential report, and returned by the GetUser API operation. If users signed in during the affected time, the password last used date that is returned is the date the user last signed in before May 3rd 2018. For users that signed in after May 23rd 2018 14:08 PDT, the returned password last used date is accurate.

    If you use password last used information to identify unused credentials for deletion, such as deleting users who did not sign in to Amazon in the last 90 days, we recommend that you adjust your evaluation window to include dates after May 23rd 2018. Alternatively, if your users use access keys to access Amazon programmatically you can refer to access key last used information because it is accurate for all dates.

To find unused passwords by downloading the credentials report (console)
  1. Sign in to the Amazon Web Services Management Console and open the IAM console at https://console.amazonaws.cn/iam/.

  2. In the navigation pane, choose Credential report.

  3. Choose Download Report to download a comma-separated value (CSV) file named status_reports_<date>T<time>.csv. The fifth column contains the password_last_used column with the dates or one of the following:

    • N/A – Users that do not have a password assigned at all.

    • no_information – Users that have not used their password since IAM began tracking password age on October 20, 2014.

To find unused passwords (Amazon CLI)

Run the following command to find unused passwords:

  • aws iam list-users returns a list of users, each with a PasswordLastUsed value. If the value is missing, then the user either has no password or the password has not been used since IAM began tracking password age on October 20, 2014.

To find unused passwords (Amazon API)

Call the following operation to find unused passwords:

  • ListUsers returns a collection of users, each of which has a <PasswordLastUsed> value. If the value is missing, then the user either has no password or the password has not been used since IAM began tracking password age on October 20, 2014.

For information about the commands to download the credentials report, see Getting credential reports (Amazon CLI).

Finding unused access keys

You can use the Amazon Web Services Management Console to view access key usage information for your users. If you have a large number of users, you can use the console to download a credentials report to find when each user last used their access keys. You can also access the information from the Amazon CLI or the IAM API.

To find unused access keys (console)
  1. Sign in to the Amazon Web Services Management Console and open the IAM console at https://console.amazonaws.cn/iam/.

  2. In the navigation pane, choose Users.

  3. If necessary, add the Access key last used column to the users table:

    1. Above the table on the far right, choose the settings icon ( 
                  Settings icon
                ).

    2. In Select visible columns, select Access key last used.

    3. Choose Confirm to return to the list of users.

  4. The Access key last used column shows the number of days since the user last accessed Amazon programmatically. You can use this information to find users with access keys that have not been used for more than a specified period of time. The column displays for users with no access keys. Access keys that have not been used recently might be good candidates for removal.

To find unused access keys by downloading the credentials report (console)
  1. Sign in to the Amazon Web Services Management Console and open the IAM console at https://console.amazonaws.cn/iam/.

  2. In the navigation pane, choose Credential Report.

  3. Choose Download Report to download a comma-separated value (CSV) file named status_reports_<date>T<time>.csv. Columns 11 through 13 contain the last used date, Region, and service information for access key 1. Columns 16 through 18 contain the same information for access key 2. The value is N/A if the user does not have an access key or the user has not used the access key since IAM began tracking access key age on April 22, 2015.

To find unused access keys (Amazon CLI)

Run the following commands to find unused access keys:

  • aws iam list-access-keys returns information about the access keys for a user, including the AccessKeyID.

  • aws iam get-access-key-last-used takes an access key ID and returns output that includes the LastUsedDate, the Region in which the access key was last used, and the ServiceName of the last service requested. If LastUsedDate is missing, then the access key has not been used since IAM began tracking access key age on April 22, 2015.

To find unused access keys (Amazon API)

Call the following operations to find unused access keys:

  • ListAccessKeys returns a list of AccessKeyID values for access keys that are associated with the specified user.

  • GetAccessKeyLastUsed takes an access key ID and returns a collection of values. Included are the LastUsedDate, the Region in which the access key was last used, and the ServiceName of the last service requested. If the value is missing, then either the user has no access key or the access key has not been used since IAM began tracking access key age on April 22, 2015.

For information about the commands to download the credentials report, see Getting credential reports (Amazon CLI).