1. IAM

1) IAM 기본 개념 (Users & Groups)

2) 권한 (Permissions) 및 최소 권한의 원칙

3) IAM 정책 구조

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "ec2:Describe*",
            "Resource": "*",
        }, 
      	{
            "Effect": "Allow",
            "Action": "elasticloadbalancing:Describe*",
            "Resource": "*",
        },
      	{
            "Effect": "Allow",
            "Action": [
              "cloudwatch:ListMetrics",
              "cloudwatch:GetMetricStatistics",
              "cloudwatch:Describe*"
            ],
            "Resource": "*",
        },
    ]
}

4) 비밀번호 정책 (Password Policy)

5) 다중 인증 (MFA - Multi Factor Authentication)

2. AWS CLI 및 SDK