AWS Fundamentals Logo
AWS Fundamentals
AWS::EKS::IdentityProviderConfig

EKS IdentityProviderConfig

An object representing an Amazon EKS IdentityProviderConfig.

Properties

5 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
ClusterName
string
RequiredCreate-only
Type
string
RequiredCreate-only
IdentityProviderConfigName
string
Create-only
Oidc
OidcIdentityProviderConfig
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
IdentityProviderConfigArnstringThe ARN of the configuration.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::EKS::IdentityProviderConfig

Resources:
  MyResource:
    Type: AWS::EKS::IdentityProviderConfig
    Properties:
      Type: "oidc"
      ClusterName: "my-clustername"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

eks:DescribeUpdateeks:AssociateIdentityProviderConfigeks:DescribeIdentityProviderConfigeks:TagResource

read

eks:DescribeIdentityProviderConfig

update

eks:DescribeIdentityProviderConfigeks:TagResourceeks:UntagResource

delete

eks:DisassociateIdentityProviderConfigeks:DescribeIdentityProviderConfig

list

eks:ListIdentityProviderConfigs

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceEKS
Properties6
Required2
TaggingSupported
Primary IDIdentityProviderConfigName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

OidcTypeIdentityProviderConfigNameClusterName

External Links