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

From wikieduonline
Jump to navigation Jump to search
Line 28: Line 28:
 
== See also ==
 
== See also ==
 
* {{Terraform aws iam resources}}
 
* {{Terraform aws iam resources}}
 +
* {{aws iam oidc}}
 
* {{OpenID}}
 
* {{OpenID}}
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]

Revision as of 18:03, 20 February 2024

  • 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: