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

From wikieduonline
Jump to navigation Jump to search
Line 5: Line 5:
  
  
* <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 client_id 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.)
  
 
* <code>[[thumbprint_list]]</code> (Required) A list of server [[certificate thumbprints]] for the [[OpenID Connect (OIDC)]] identity provider's server certificate(s).
 
* <code>[[thumbprint_list]]</code> (Required) A list of server [[certificate thumbprints]] for the [[OpenID Connect (OIDC)]] identity provider's server certificate(s).

Revision as of 07:05, 7 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: