I want to create an AWS user specifically for using the EC2 inventory plugin. What permissions should I give said user?
Got it.
For reference, these are the permissions:
{
“Version”: “2012-10-17”,
“Statement”: [
{
“Action”: [
“ec2:DescribeRegions”,
“ec2:DescribeInstances”
],
“Effect”: “Allow”,
“Resource”: “*”
}
]
}