Last active
June 20, 2021 07:31
-
-
Save davidobrien1985/853c1c77a79b5185b4d5b08bfa43b784 to your computer and use it in GitHub Desktop.
ARGOS AWS IAM policy document required for ARGOS to successfully scan your AWS Accounts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"ec2:DescribeInstances", | |
"ec2:DescribeInternetGateways", | |
"ec2:DescribeNetworkAcls", | |
"ec2:DescribeNetworkInterfaces", | |
"ec2:DescribeRegions", | |
"ec2:DescribeRouteTables", | |
"ec2:DescribeSecurityGroups", | |
"ec2:DescribeSubnets", | |
"ec2:DescribeVolumes", | |
"ec2:DescribeVpcs", | |
"elasticloadbalancing:DescribeListeners", | |
"elasticloadbalancing:DescribeLoadBalancerPolicies", | |
"elasticloadbalancing:DescribeLoadBalancers", | |
"kms:ListKeys", | |
"lambda:ListFunctions", | |
"s3:ListAllMyBuckets" | |
], | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "kms:DescribeKey", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "rds:DescribeDBClusters", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "rds:DescribeDBInstances", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "rds:DescribeDBSecurityGroups", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "rds:DescribeDBSnapshots", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "rds:DescribeDBSubnetGroups", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "s3:GetBucketLocation", | |
"Resource": "*" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment