AWS IAM User Inactivity Checker
This script is designed to check for inactive IAM (Identity and Access Management) users within a specified AWS account. It utilizes the AWS SDK for Python (Boto3) to retrieve user data and provides information about the last console access and last programmatic access for each user. Code """ AWS IAM User Inactivity Checker Author: Mario Lechończak (mario at lechonczak.pl) """ import csv import sys from datetime import datetime import boto3 import pytz # Define variable max_date = sys....