Merge pull request #27794 from justinsb/fix_27467

Automatic merge from submit-queue

AWS kube-up: Authorize route53 in the IAM policy

Federation needs this now (on the nodes), and I suspect ingress
controllers will shortly want this also.  Given we're going to authorize
it on the nodes, we should authorize it on the master also (the master
is much more trusted).

Fix #27467
This commit is contained in:
k8s-merge-robot 2016-06-21 15:47:38 -07:00 committed by GitHub
commit 62ce66988c
2 changed files with 10 additions and 0 deletions

View File

@ -11,6 +11,11 @@
"Action": ["elasticloadbalancing:*"],
"Resource": ["*"]
},
{
"Effect": "Allow",
"Action": ["route53:*"],
"Resource": ["*"]
},
{
"Effect": "Allow",
"Action": "s3:*",

View File

@ -23,6 +23,11 @@
"Action": "ec2:DetachVolume",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": ["route53:*"],
"Resource": ["*"]
},
{
"Effect": "Allow",
"Action": [