Sign inSign up

forward3d/garrison-agent-aws-iam

By forward3d

•Updated over 5 years ago

Garrison Agent - AWS IAM

Image
0

10K+

forward3d/garrison-agent-aws-iam repository overview

⁠Garrison Agent - AWS IAM

This is a part of the Garrison⁠ security project. This agent mainly provides compliance alerts and other basic checks.

⁠Checks Provided
Function NameDescription
check_mfaAlerts for IAM Users that have no MFA devices and console access
check_unusedAlerts for IAM Access Keys that have not been used in the last X days
⁠Installation & Example

Docker Hub - https://hub.docker.com/r/forward3d/garrison-agent-aws-iam/⁠

docker pull forward3d/garrison-agent-aws-guardduty
docker run --rm -e "GARRISON_URL=https://garrison.internal.acme.com" forward3d/garrison-agent-aws-iam check_mfa
⁠AWS Authentication

As this requires access to the AWS API you will need this IAM policy as a minimum for it to operate correctly.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": [
                "iam:GetAccessKeyLastUsed",
                "iam:ListUsers",
                "iam:ListMFADevices",
                "iam:ListAccessKeys"
            ],
            "Effect": "Allow",
            "Resource": "*"
        }
    ]
}

We recommend using EC2/ECS Task roles so that you don't need to send credentials into the container, however if you can't use those or want to send in specific Access Keys and Secret keys, please see the AWS Documentation⁠ as to how you do that.

⁠Check Specific Configuration

Some checks provided by this agent have extra configuration options.

⁠check_unused
Environmental VariableDefault
GARRISON_IAM_THRESHOLD90

Tag summary

Content type

Image

Digest

Size

28.7 MB

Last updated

over 5 years ago

docker pull forward3d/garrison-agent-aws-iam