alessioalex / dynroute

Node CLI tool for dynamic DNS using Route53
46 stars 5 forks source link

Sample aws user policy #12

Closed prabhu closed 8 years ago

prabhu commented 8 years ago

Hopefully people won't use their admin account for every operation on aws. Would appreciate if you can update the readme.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "route53:ListHostedZones",
                "route53:ListResourceRecordSets",
                "route53:ChangeResourceRecordSets",
                "route53:CreateHostedZone",
                "route53domains:*"
            ],
            "Resource": [
                "*"
            ]
        }
    ]
}
alessioalex commented 8 years ago

done! thanks for contributing @prabhu