Sign in
agent:

Creating a new OIDC provider using AWS Cognito

There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
  1. 1

    Create user pool in AWS Cognito

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    aws cognito-idp create-user-pool \ --pool-name <oidc_pool_name> \ --region <region_name>
    copied
    1
  2. 2

    Create an app client for AWS cognito using the user_id from previously created user-pool

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    aws cognito-idp create-user-pool-client \ --user-pool-id <user_pool_id> \ --client-name eks-client \ --no-generate-secret \ --region <region_name>
    copied
    2
  3. 3

    Create an IAM OIDC Provider Using AWS Cognito

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    aws iam create-open-id-connect-provider \ --url <provider_url_cognito> \ --client-id-list "sts.amazonaws.com" \ --thumbprint-list $(openssl s_client -servername cognito-idp.us-east-2.amazonaws.com -connect cognito-idp.us-east-2.amazonaws.com:443 </dev/null 2>/dev/null | openssl x509 -fingerprint -sha1 -noout | cut -d"=" -f2) \ --region <region_name>
    copied
    3
  4. 4

    Associating Cognito OIDC provider with EKS Cluster

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    aws eks associate-identity-provider-config \ --region <region_name> \ --cluster-name <cluster_name> \ --oidc identityProviderConfigName="eks-oidc-cognito",issuerUrl=<provider_url_cognito>,clientId=<client_id>
    copied
    4