You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"google_identity_platform_tenant_oauth_idp_config" {
source="./modules/google-beta/r/google_identity_platform_tenant_oauth_idp_config"# client_id - (required) is a type of stringclient_id=null# client_secret - (optional) is a type of stringclient_secret=null# display_name - (required) is a type of stringdisplay_name=null# enabled - (optional) is a type of boolenabled=null# issuer - (required) is a type of stringissuer=null# name - (required) is a type of stringname=null# project - (optional) is a type of stringproject=null# tenant - (required) is a type of stringtenant=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
variable"client_id" {
description="(required) - The client id of an OAuth client."type=string
}
variable"client_secret" {
description="(optional) - The client secret of the OAuth client, to enable OIDC code flow."type=stringdefault=null
}
variable"display_name" {
description="(required) - Human friendly display name."type=string
}
variable"enabled" {
description="(optional) - If this config allows users to sign in with the provider."type=booldefault=null
}
variable"issuer" {
description="(required) - For OIDC Idps, the issuer identifier."type=string
}
variable"name" {
description="(required) - The name of the OauthIdpConfig. Must start with 'oidc.'."type=string
}
variable"project" {
description="(optional)"type=stringdefault=null
}
variable"tenant" {
description="(required) - The name of the tenant where this OIDC IDP configuration resource exists"type=string
}
variable"timeouts" {
description="nested block: NestingSingle, min items: 0, max items: 0"type=set(object(
{
create =string
delete =string
update =string
}
))
default=[]
}
resource"google_identity_platform_tenant_oauth_idp_config""this" {
# client_id - (required) is a type of stringclient_id=var.client_id# client_secret - (optional) is a type of stringclient_secret=var.client_secret# display_name - (required) is a type of stringdisplay_name=var.display_name# enabled - (optional) is a type of boolenabled=var.enabled# issuer - (required) is a type of stringissuer=var.issuer# name - (required) is a type of stringname=var.name# project - (optional) is a type of stringproject=var.project# tenant - (required) is a type of stringtenant=var.tenantdynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}