ServiceAccountProps

class aws_cdk.aws_eks.ServiceAccountProps(*, annotations=None, identity_type=None, labels=None, name=None, namespace=None, cluster)

Bases: ServiceAccountOptions

Properties for defining service accounts.

Parameters:
ExampleMetadata:

infused

Example:

# cluster: eks.Cluster


eks.ServiceAccount(self, "ServiceAccount",
    cluster=cluster,
    name="test-sa",
    namespace="default",
    identity_type=eks.IdentityType.POD_IDENTITY
)

Attributes

annotations

Additional annotations of the service account.

Default:
  • no additional annotations

cluster

The cluster to apply the patch to.

identity_type

The identity type to use for the service account.

Default:

IdentityType.IRSA

labels

Additional labels of the service account.

Default:
  • no additional labels

name

The name of the service account.

The name of a ServiceAccount object must be a valid DNS subdomain name. https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/

Default:
  • If no name is given, it will use the id of the resource.

namespace

The namespace of the service account.

All namespace names must be valid RFC 1123 DNS labels. https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/#namespaces-and-dns

Default:

“default”