I was trying to use terraform to create EKS cluster. The terraform code: https://github.com/terraform-aws-modules/terraform-aws-eks/tree/master/examples/eks_managed_node_group, obviously, I had to create access key and specify in provider and change EC2 instance type to what allowed etc.
Now, I realized there are still several resources we don’t have properly IAM permission with user provisioned in playgroud, such as EC2 NAT Gateway, EKS Node Group
Error: creating EC2 NAT Gateway: UnauthorizedOperation: You are not authorized to perform this operation.
Error: creating EKS Node Group (ex-eks-managed-node-group:custom_ami-20230504185737324200000034): AccessDeniedException: User: arn:aws:iam::330310432132:user/odl_user_935047 is not authorized to perform: eks:CreateNodegroup on resource: arn:aws:eks:us-east-1:330310432132:cluster/ex-eks-managed-node-group with an explicit deny
Is it possible to grant those permission to playground account?