Home > Mobile >  How to transfer AWS EKS Root user
How to transfer AWS EKS Root user

Time:09-04

If we have a role change in the team, can we transfer the AWS EKS root (creator) user to another IAM user? I only find ways to add new user using configmap but this configmap doesn't have the root user in there.

$ kubectl edit configmap aws-auth --namespace kube-system

EDIT: I read that EKS creator can NOT be transferred. Can we instead rename the creator's IAM user name via aws cli? Will that break EKS?

CodePudding user response:

There is no way to transfer the root user of an EKS cluster to another IAM user. The only way to do this would be to delete the cluster and recreate it with the new IAM user as the root user.

  • Related