Update Access Entry
| eks_update_access_entry | R Documentation |
Updates an access entry¶
Description¶
Updates an access entry.
Usage¶
Arguments¶
clusterName[required] The name of your cluster.
principalArn[required] The ARN of the IAM principal for the
AccessEntry.kubernetesGroupsThe value for
namethat you've specified forkind: Groupas asubjectin a KubernetesRoleBindingorClusterRoleBindingobject. Amazon EKS doesn't confirm that the value fornameexists in any bindings on your cluster. You can specify one or more names.Kubernetes authorizes the
principalArnof the access entry to access any cluster objects that you've specified in a KubernetesRoleorClusterRoleobject that is also specified in a binding'sroleRef. For more information about creating KubernetesRoleBinding,ClusterRoleBinding,Role, orClusterRoleobjects, see Using RBAC Authorization in the Kubernetes documentation.If you want Amazon EKS to authorize the
principalArn(instead of, or in addition to Kubernetes authorizing theprincipalArn), you can associate one or more access policies to the access entry usingassociate_access_policy. If you associate any access policies, theprincipalARNhas all permissions assigned in the associated access policies and all permissions in any KubernetesRoleorClusterRoleobjects that the group names are bound to.clientRequestTokenA unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
usernameThe username to authenticate to Kubernetes with. We recommend not specifying a username and letting Amazon EKS specify it for you. For more information about the value Amazon EKS specifies for you, or constraints before specifying your own username, see Creating access entries in the Amazon EKS User Guide.
Value¶
A list with the following syntax:
list(
accessEntry = list(
clusterName = "string",
principalArn = "string",
kubernetesGroups = list(
"string"
),
accessEntryArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
modifiedAt = as.POSIXct(
"2015-01-01"
),
tags = list(
"string"
),
username = "string",
type = "string"
)
)