Terraform resource: aws iam openid connect provider

From wikieduonline
Revision as of 17:59, 20 February 2024 by Welcome (talk | contribs) (→‎Related)
Jump to navigation Jump to search

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: