Difference between revisions of "Terraform resource: aws iam openid connect provider"

From wikieduonline
Jump to navigation Jump to search
Line 22: Line 22:
 
== Related ==
 
== Related ==
 
* [[Terraform EKS module]]: <code>[[module.eks.oidc_provider]]</code>
 
* [[Terraform EKS module]]: <code>[[module.eks.oidc_provider]]</code>
 +
* [[oidc-provider/]]
  
 
== See also ==
 
== See also ==

Revision as of 17:44, 20 February 2024

cluster endpoint public access


  • client_id_list - (Required) A list of client IDs (also known as audiences). When a mobile or web app registers with an OpenID Connect provider, they establish a value that identifies the application. (This is the value that's sent as the client_id parameter on OAuth requests.)

Official example

resource "aws_iam_openid_connect_provider" "default" {
 url = "https://accounts.google.com"

 client_id_list = [
   "266362248691-342342xasdasdasda-apps.googleusercontent.com",
 ]

 thumbprint_list = ["cf23df2207d99a74fbe169e3eba035e633b65d94"]
}

Related

See also

Advertising: