Create Pod Identity Association
eks_create_pod_identity_association | R Documentation |
Creates an EKS Pod Identity association between a service account in an Amazon EKS cluster and an IAM role with EKS Pod Identity¶
Description¶
Creates an EKS Pod Identity association between a service account in an Amazon EKS cluster and an IAM role with EKS Pod Identity. Use EKS Pod Identity to give temporary IAM credentials to pods and the credentials are rotated automatically.
Amazon EKS Pod Identity associations provide the ability to manage credentials for your applications, similar to the way that Amazon EC2 instance profiles provide credentials to Amazon EC2 instances.
If a pod uses a service account that has an association, Amazon EKS sets environment variables in the containers of the pod. The environment variables configure the Amazon Web Services SDKs, including the Command Line Interface, to use the EKS Pod Identity credentials.
Pod Identity is a simpler method than IAM roles for service accounts, as this method doesn't use OIDC identity providers. Additionally, you can configure a role for Pod Identity once, and reuse it across clusters.
Usage¶
eks_create_pod_identity_association(clusterName, namespace,
serviceAccount, roleArn, clientRequestToken, tags)
Arguments¶
clusterName |
[required] The name of the cluster to create the association in. |
namespace |
[required] The name of the Kubernetes namespace inside the cluster to create the association in. The service account and the pods that use the service account must be in this namespace. |
serviceAccount |
[required] The name of the Kubernetes service account inside the cluster to associate the IAM credentials with. |
roleArn |
[required] The Amazon Resource Name (ARN) of the IAM role to associate with the service account. The EKS Pod Identity agent manages credentials to assume this role for applications in the containers in the pods that use this service account. |
clientRequestToken |
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. |
tags |
Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources. The following basic restrictions apply to tags:
|
Value¶
A list with the following syntax:
list(
association = list(
clusterName = "string",
namespace = "string",
serviceAccount = "string",
roleArn = "string",
associationArn = "string",
associationId = "string",
tags = list(
"string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
modifiedAt = as.POSIXct(
"2015-01-01"
),
ownerArn = "string"
)
)
Request syntax¶
svc$create_pod_identity_association(
clusterName = "string",
namespace = "string",
serviceAccount = "string",
roleArn = "string",
clientRequestToken = "string",
tags = list(
"string"
)
)