Reputation: 942
We would like to integrate Azure Active Directory (Azure AD) with AWS EKS Identity Provider Configuration using OIDC.
Currently, I am not sure about Terraform AWS provider module does have the feature of OIDC integration with Azure AD directly.
I am looking similar configure of terraform AWS provider module.
For example:
oidc {
client_id = “spn:xxxxxxxxxxxx”
groups_claim = “xxx”
groups_prefix = “aad:”
identity_provider_config_name = “eks-oidc”
issuer_url = “xxxxxx”
username_claim = “xxx”
username_prefix = “aad:”
}
The above configuration template getting from the below link for a different provider.
how can I achieve this through terraform? Is it the only way to configure the OIDC identity provider to our cluster using eksctl?
https://docs.amazonaws.cn/en_us/eks/latest/userguide/authenticate-oidc-identity-provider.html
Regards, Nataraj.R
Upvotes: 0
Views: 668
Reputation: 21
Looks like this is supported via Cognito?
Might be worth having a look around there and seeing if that meets your needs.
Ian.
Upvotes: 1