vantage-sh / ec2instances.info

Amazon EC2 instance comparison site
https://ec2instances.info
MIT License
5.07k stars 578 forks source link

Minimum AWS scraping role missing Elasticache read permissions #712

Closed corey-cole closed 9 months ago

corey-cole commented 10 months ago

The minimal IAM role given in the README.md is missing permissions that are used in cache.py

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": ["ec2:DescribeInstanceTypes", "ec2:DescribeRegions", "pricing:*", "elasticache:DescribeEngineDefaultParameters"],
      "Resource": "*"
    }
  ]
}