mirror of https://github.com/kubernetes/kops.git
Corrected externalPolicy
AWS IAM resource ID's were in an incorrect format.
This commit is contained in:
parent
3d39be7721
commit
04be48a8cd
|
@ -81,11 +81,11 @@ Policy Overrides are specified by their ARN on AWS and are grouped by their role
|
||||||
spec:
|
spec:
|
||||||
externalPolicies:
|
externalPolicies:
|
||||||
node:
|
node:
|
||||||
- aws:arn:iam:123456789000:policy:test-policy
|
- arn:aws:iam::123456789000:policy/test-policy
|
||||||
master:
|
master:
|
||||||
- aws:arn:iam:123456789000:policy:test-policy
|
- arn:aws:iam::123456789000:policy/test-policy
|
||||||
bastion:
|
bastion:
|
||||||
- aws:arn:iam:123456789000:policy:test-policy
|
- arn:aws:iam::123456789000:policy/test-policy
|
||||||
```
|
```
|
||||||
|
|
||||||
External Policy attachments are treated declaritively. Any policies declared will be attached to the role, any policies not specified will be detached _after_ new policies are attached. This does not replace or affect built in kOps policies in any way.
|
External Policy attachments are treated declaritively. Any policies declared will be attached to the role, any policies not specified will be detached _after_ new policies are attached. This does not replace or affect built in kOps policies in any way.
|
||||||
|
|
Loading…
Reference in New Issue