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

From wikieduonline
Jump to navigation Jump to search
Line 4: Line 4:
 
* <code>[[url]] = "[[oidc.eks.us-east-2.amazonaws.com]]/id/XXXXX"</code>
 
* <code>[[url]] = "[[oidc.eks.us-east-2.amazonaws.com]]/id/XXXXX"</code>
  
 +
* <code>[[url]], [[arn]], [[id]]</code>
  
 
* <code>client_id_list</code> - (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 <code>[[client_id]]</code> parameter on [[OAuth]] requests.)
 
* <code>client_id_list</code> - (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 <code>[[client_id]]</code> parameter on [[OAuth]] requests.)

Revision as of 18:02, 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: