mirror of https://github.com/kubernetes/kops.git
Merge pull request #1950 from zytek/iam-route53-docs
docs: reflect changes made in #1871
This commit is contained in:
commit
cab7cd3540
|
@ -10,7 +10,6 @@ Master permissions:
|
||||||
|
|
||||||
```
|
```
|
||||||
ec2:*
|
ec2:*
|
||||||
route53:*
|
|
||||||
elasticloadbalancing:*
|
elasticloadbalancing:*
|
||||||
ecr:GetAuthorizationToken
|
ecr:GetAuthorizationToken
|
||||||
ecr:BatchCheckLayerAvailability
|
ecr:BatchCheckLayerAvailability
|
||||||
|
@ -19,6 +18,11 @@ ecr:GetRepositoryPolicy
|
||||||
ecr:DescribeRepositories
|
ecr:DescribeRepositories
|
||||||
ecr:ListImages
|
ecr:ListImages
|
||||||
ecr:BatchGetImage
|
ecr:BatchGetImage
|
||||||
|
route53:ListHostedZones
|
||||||
|
route53:GetChange
|
||||||
|
// The following permissions are scoped to AWS Route53 HostedZone used to bootstrap the cluster
|
||||||
|
// arn:aws:route53:::hostedzone/$hosted_zone_id
|
||||||
|
route53:ChangeResourceRecordSets, ListResourceRecordSets, GetHostedZone
|
||||||
|
|
||||||
// The following permissions are only created if you are using etcd volumes with "encrypted: true" and a custom kmsKeyId.
|
// The following permissions are only created if you are using etcd volumes with "encrypted: true" and a custom kmsKeyId.
|
||||||
// They are scoped to the kmsKeyId that you are using.
|
// They are scoped to the kmsKeyId that you are using.
|
||||||
|
@ -36,7 +40,6 @@ Node permissions:
|
||||||
|
|
||||||
```
|
```
|
||||||
ec2:Describe*
|
ec2:Describe*
|
||||||
route53:*
|
|
||||||
ecr:GetAuthorizationToken
|
ecr:GetAuthorizationToken
|
||||||
ecr:BatchCheckLayerAvailability
|
ecr:BatchCheckLayerAvailability
|
||||||
ecr:GetDownloadUrlForLayer
|
ecr:GetDownloadUrlForLayer
|
||||||
|
@ -44,6 +47,11 @@ ecr:GetRepositoryPolicy
|
||||||
ecr:DescribeRepositories
|
ecr:DescribeRepositories
|
||||||
ecr:ListImages
|
ecr:ListImages
|
||||||
ecr:BatchGetImage
|
ecr:BatchGetImage
|
||||||
|
route53:ListHostedZones
|
||||||
|
route53:GetChange
|
||||||
|
// The following permissions are scoped to AWS Route53 HostedZone used to bootstrap the cluster
|
||||||
|
// arn:aws:route53:::hostedzone/$hosted_zone_id
|
||||||
|
route53:ChangeResourceRecordSets, ListResourceRecordSets, GetHostedZone
|
||||||
```
|
```
|
||||||
|
|
||||||
## Adding Additional Policies
|
## Adding Additional Policies
|
||||||
|
|
Loading…
Reference in New Issue