forked from eksctl-io/eksctl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add security page to docs (eksctl-io#2637)
- Loading branch information
1 parent
056da9e
commit b439c76
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Security | ||
|
||
`eksctl` provides some options that can improve the security of your EKS cluster. | ||
|
||
## `withOIDC` | ||
|
||
Enable [`withOIDC`](/usage/schema/#iam-withOIDC) to automatically create an [IRSA](/usage/iamserviceaccounts/) for the amazon CNI plugin and | ||
limit permissions granted to nodes in your cluster, instead granting the necessary permissions | ||
only to the CNI service account. The background is described in [this AWS | ||
documentation](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts-cni-walkthrough.html). | ||
|
||
## `disablePodIMDS` | ||
|
||
For managed and unmanaged nodegroups, [`disablePodIMDS`](/usage/schema/#nodeGroups-disablePodIMDS) option is available prevents all | ||
non host networking pods running in this nodegroup from making IMDS requests. | ||
|
||
!!!note | ||
This can not be used together with [`withAddonPolicies`](/usage/iam-policies/). | ||
|