1. Packages
  2. Zitadel
  3. API Docs
  4. OrgIdpOauth
zitadel v0.2.0 published on Monday, Mar 24, 2025 by pulumiverse

zitadel.OrgIdpOauth

Explore with Pulumi AI

Resource representing a generic OAuth2 IDP on the organization.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Zitadel = Pulumiverse.Zitadel;

return await Deployment.RunAsync(() => 
{
    var @default = new Zitadel.OrgIdpOauth("default", new()
    {
        OrgId = defaultZitadelOrg.Id,
        Name = "GitLab",
        ClientId = "15765e...",
        ClientSecret = "*****abcxyz",
        AuthorizationEndpoint = "https://accounts.google.com/o/oauth2/v2/auth",
        TokenEndpoint = "https://oauth2.googleapis.com/token",
        UserEndpoint = "https://openidconnect.googleapis.com/v1/userinfo",
        IdAttribute = "user_id",
        Scopes = new[]
        {
            "openid",
            "profile",
            "email",
        },
        IsLinkingAllowed = false,
        IsCreationAllowed = true,
        IsAutoCreation = false,
        IsAutoUpdate = true,
    });

});
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-zitadel/sdk/go/zitadel"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := zitadel.NewOrgIdpOauth(ctx, "default", &zitadel.OrgIdpOauthArgs{
			OrgId:                 pulumi.Any(defaultZitadelOrg.Id),
			Name:                  pulumi.String("GitLab"),
			ClientId:              pulumi.String("15765e..."),
			ClientSecret:          pulumi.String("*****abcxyz"),
			AuthorizationEndpoint: pulumi.String("https://accounts.google.com/o/oauth2/v2/auth"),
			TokenEndpoint:         pulumi.String("https://oauth2.googleapis.com/token"),
			UserEndpoint:          pulumi.String("https://openidconnect.googleapis.com/v1/userinfo"),
			IdAttribute:           pulumi.String("user_id"),
			Scopes: pulumi.StringArray{
				pulumi.String("openid"),
				pulumi.String("profile"),
				pulumi.String("email"),
			},
			IsLinkingAllowed:  pulumi.Bool(false),
			IsCreationAllowed: pulumi.Bool(true),
			IsAutoCreation:    pulumi.Bool(false),
			IsAutoUpdate:      pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zitadel.OrgIdpOauth;
import com.pulumi.zitadel.OrgIdpOauthArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var default_ = new OrgIdpOauth("default", OrgIdpOauthArgs.builder()        
            .orgId(defaultZitadelOrg.id())
            .name("GitLab")
            .clientId("15765e...")
            .clientSecret("*****abcxyz")
            .authorizationEndpoint("https://accounts.google.com/o/oauth2/v2/auth")
            .tokenEndpoint("https://oauth2.googleapis.com/token")
            .userEndpoint("https://openidconnect.googleapis.com/v1/userinfo")
            .idAttribute("user_id")
            .scopes(            
                "openid",
                "profile",
                "email")
            .isLinkingAllowed(false)
            .isCreationAllowed(true)
            .isAutoCreation(false)
            .isAutoUpdate(true)
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as zitadel from "@pulumiverse/zitadel";

const _default = new zitadel.OrgIdpOauth("default", {
    orgId: defaultZitadelOrg.id,
    name: "GitLab",
    clientId: "15765e...",
    clientSecret: "*****abcxyz",
    authorizationEndpoint: "https://accounts.google.com/o/oauth2/v2/auth",
    tokenEndpoint: "https://oauth2.googleapis.com/token",
    userEndpoint: "https://openidconnect.googleapis.com/v1/userinfo",
    idAttribute: "user_id",
    scopes: [
        "openid",
        "profile",
        "email",
    ],
    isLinkingAllowed: false,
    isCreationAllowed: true,
    isAutoCreation: false,
    isAutoUpdate: true,
});
Copy
import pulumi
import pulumiverse_zitadel as zitadel

default = zitadel.OrgIdpOauth("default",
    org_id=default_zitadel_org["id"],
    name="GitLab",
    client_id="15765e...",
    client_secret="*****abcxyz",
    authorization_endpoint="https://accounts.google.com/o/oauth2/v2/auth",
    token_endpoint="https://oauth2.googleapis.com/token",
    user_endpoint="https://openidconnect.googleapis.com/v1/userinfo",
    id_attribute="user_id",
    scopes=[
        "openid",
        "profile",
        "email",
    ],
    is_linking_allowed=False,
    is_creation_allowed=True,
    is_auto_creation=False,
    is_auto_update=True)
Copy
resources:
  default:
    type: zitadel:OrgIdpOauth
    properties:
      orgId: ${defaultZitadelOrg.id}
      name: GitLab
      clientId: 15765e...
      clientSecret: '*****abcxyz'
      authorizationEndpoint: https://accounts.google.com/o/oauth2/v2/auth
      tokenEndpoint: https://oauth2.googleapis.com/token
      userEndpoint: https://openidconnect.googleapis.com/v1/userinfo
      idAttribute: user_id
      scopes:
        - openid
        - profile
        - email
      isLinkingAllowed: false
      isCreationAllowed: true
      isAutoCreation: false
      isAutoUpdate: true
Copy

Create OrgIdpOauth Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new OrgIdpOauth(name: string, args: OrgIdpOauthArgs, opts?: CustomResourceOptions);
@overload
def OrgIdpOauth(resource_name: str,
                args: OrgIdpOauthArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def OrgIdpOauth(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                is_creation_allowed: Optional[bool] = None,
                client_id: Optional[str] = None,
                client_secret: Optional[str] = None,
                id_attribute: Optional[str] = None,
                is_auto_creation: Optional[bool] = None,
                is_auto_update: Optional[bool] = None,
                authorization_endpoint: Optional[str] = None,
                is_linking_allowed: Optional[bool] = None,
                token_endpoint: Optional[str] = None,
                user_endpoint: Optional[str] = None,
                name: Optional[str] = None,
                org_id: Optional[str] = None,
                scopes: Optional[Sequence[str]] = None)
func NewOrgIdpOauth(ctx *Context, name string, args OrgIdpOauthArgs, opts ...ResourceOption) (*OrgIdpOauth, error)
public OrgIdpOauth(string name, OrgIdpOauthArgs args, CustomResourceOptions? opts = null)
public OrgIdpOauth(String name, OrgIdpOauthArgs args)
public OrgIdpOauth(String name, OrgIdpOauthArgs args, CustomResourceOptions options)
type: zitadel:OrgIdpOauth
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OrgIdpOauthArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. OrgIdpOauthArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. OrgIdpOauthArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OrgIdpOauthArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OrgIdpOauthArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var orgIdpOauthResource = new Zitadel.OrgIdpOauth("orgIdpOauthResource", new()
{
    IsCreationAllowed = false,
    ClientId = "string",
    ClientSecret = "string",
    IdAttribute = "string",
    IsAutoCreation = false,
    IsAutoUpdate = false,
    AuthorizationEndpoint = "string",
    IsLinkingAllowed = false,
    TokenEndpoint = "string",
    UserEndpoint = "string",
    Name = "string",
    OrgId = "string",
    Scopes = new[]
    {
        "string",
    },
});
Copy
example, err := zitadel.NewOrgIdpOauth(ctx, "orgIdpOauthResource", &zitadel.OrgIdpOauthArgs{
	IsCreationAllowed:     pulumi.Bool(false),
	ClientId:              pulumi.String("string"),
	ClientSecret:          pulumi.String("string"),
	IdAttribute:           pulumi.String("string"),
	IsAutoCreation:        pulumi.Bool(false),
	IsAutoUpdate:          pulumi.Bool(false),
	AuthorizationEndpoint: pulumi.String("string"),
	IsLinkingAllowed:      pulumi.Bool(false),
	TokenEndpoint:         pulumi.String("string"),
	UserEndpoint:          pulumi.String("string"),
	Name:                  pulumi.String("string"),
	OrgId:                 pulumi.String("string"),
	Scopes: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var orgIdpOauthResource = new OrgIdpOauth("orgIdpOauthResource", OrgIdpOauthArgs.builder()
    .isCreationAllowed(false)
    .clientId("string")
    .clientSecret("string")
    .idAttribute("string")
    .isAutoCreation(false)
    .isAutoUpdate(false)
    .authorizationEndpoint("string")
    .isLinkingAllowed(false)
    .tokenEndpoint("string")
    .userEndpoint("string")
    .name("string")
    .orgId("string")
    .scopes("string")
    .build());
Copy
org_idp_oauth_resource = zitadel.OrgIdpOauth("orgIdpOauthResource",
    is_creation_allowed=False,
    client_id="string",
    client_secret="string",
    id_attribute="string",
    is_auto_creation=False,
    is_auto_update=False,
    authorization_endpoint="string",
    is_linking_allowed=False,
    token_endpoint="string",
    user_endpoint="string",
    name="string",
    org_id="string",
    scopes=["string"])
Copy
const orgIdpOauthResource = new zitadel.OrgIdpOauth("orgIdpOauthResource", {
    isCreationAllowed: false,
    clientId: "string",
    clientSecret: "string",
    idAttribute: "string",
    isAutoCreation: false,
    isAutoUpdate: false,
    authorizationEndpoint: "string",
    isLinkingAllowed: false,
    tokenEndpoint: "string",
    userEndpoint: "string",
    name: "string",
    orgId: "string",
    scopes: ["string"],
});
Copy
type: zitadel:OrgIdpOauth
properties:
    authorizationEndpoint: string
    clientId: string
    clientSecret: string
    idAttribute: string
    isAutoCreation: false
    isAutoUpdate: false
    isCreationAllowed: false
    isLinkingAllowed: false
    name: string
    orgId: string
    scopes:
        - string
    tokenEndpoint: string
    userEndpoint: string
Copy

OrgIdpOauth Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The OrgIdpOauth resource accepts the following input properties:

AuthorizationEndpoint This property is required. string
The authorization endpoint
ClientId This property is required. string
client id generated by the identity provider
ClientSecret This property is required. string
client secret generated by the identity provider
IdAttribute This property is required. string
The id attribute
IsAutoCreation This property is required. bool
enable if a new account in ZITADEL should be created automatically on login with an external account
IsAutoUpdate This property is required. bool
enable if a the ZITADEL account fields should be updated automatically on each login
IsCreationAllowed This property is required. bool
enable if users should be able to create a new account in ZITADEL when using an external account
IsLinkingAllowed This property is required. bool
enable if users should be able to link an existing ZITADEL user with an external account
TokenEndpoint This property is required. string
The token endpoint
UserEndpoint This property is required. string
The user endpoint
Name string
Name of the IDP
OrgId Changes to this property will trigger replacement. string
ID of the organization
Scopes List<string>
the scopes requested by ZITADEL during the request on the identity provider
AuthorizationEndpoint This property is required. string
The authorization endpoint
ClientId This property is required. string
client id generated by the identity provider
ClientSecret This property is required. string
client secret generated by the identity provider
IdAttribute This property is required. string
The id attribute
IsAutoCreation This property is required. bool
enable if a new account in ZITADEL should be created automatically on login with an external account
IsAutoUpdate This property is required. bool
enable if a the ZITADEL account fields should be updated automatically on each login
IsCreationAllowed This property is required. bool
enable if users should be able to create a new account in ZITADEL when using an external account
IsLinkingAllowed This property is required. bool
enable if users should be able to link an existing ZITADEL user with an external account
TokenEndpoint This property is required. string
The token endpoint
UserEndpoint This property is required. string
The user endpoint
Name string
Name of the IDP
OrgId Changes to this property will trigger replacement. string
ID of the organization
Scopes []string
the scopes requested by ZITADEL during the request on the identity provider
authorizationEndpoint This property is required. String
The authorization endpoint
clientId This property is required. String
client id generated by the identity provider
clientSecret This property is required. String
client secret generated by the identity provider
idAttribute This property is required. String
The id attribute
isAutoCreation This property is required. Boolean
enable if a new account in ZITADEL should be created automatically on login with an external account
isAutoUpdate This property is required. Boolean
enable if a the ZITADEL account fields should be updated automatically on each login
isCreationAllowed This property is required. Boolean
enable if users should be able to create a new account in ZITADEL when using an external account
isLinkingAllowed This property is required. Boolean
enable if users should be able to link an existing ZITADEL user with an external account
tokenEndpoint This property is required. String
The token endpoint
userEndpoint This property is required. String
The user endpoint
name String
Name of the IDP
orgId Changes to this property will trigger replacement. String
ID of the organization
scopes List<String>
the scopes requested by ZITADEL during the request on the identity provider
authorizationEndpoint This property is required. string
The authorization endpoint
clientId This property is required. string
client id generated by the identity provider
clientSecret This property is required. string
client secret generated by the identity provider
idAttribute This property is required. string
The id attribute
isAutoCreation This property is required. boolean
enable if a new account in ZITADEL should be created automatically on login with an external account
isAutoUpdate This property is required. boolean
enable if a the ZITADEL account fields should be updated automatically on each login
isCreationAllowed This property is required. boolean
enable if users should be able to create a new account in ZITADEL when using an external account
isLinkingAllowed This property is required. boolean
enable if users should be able to link an existing ZITADEL user with an external account
tokenEndpoint This property is required. string
The token endpoint
userEndpoint This property is required. string
The user endpoint
name string
Name of the IDP
orgId Changes to this property will trigger replacement. string
ID of the organization
scopes string[]
the scopes requested by ZITADEL during the request on the identity provider
authorization_endpoint This property is required. str
The authorization endpoint
client_id This property is required. str
client id generated by the identity provider
client_secret This property is required. str
client secret generated by the identity provider
id_attribute This property is required. str
The id attribute
is_auto_creation This property is required. bool
enable if a new account in ZITADEL should be created automatically on login with an external account
is_auto_update This property is required. bool
enable if a the ZITADEL account fields should be updated automatically on each login
is_creation_allowed This property is required. bool
enable if users should be able to create a new account in ZITADEL when using an external account
is_linking_allowed This property is required. bool
enable if users should be able to link an existing ZITADEL user with an external account
token_endpoint This property is required. str
The token endpoint
user_endpoint This property is required. str
The user endpoint
name str
Name of the IDP
org_id Changes to this property will trigger replacement. str
ID of the organization
scopes Sequence[str]
the scopes requested by ZITADEL during the request on the identity provider
authorizationEndpoint This property is required. String
The authorization endpoint
clientId This property is required. String
client id generated by the identity provider
clientSecret This property is required. String
client secret generated by the identity provider
idAttribute This property is required. String
The id attribute
isAutoCreation This property is required. Boolean
enable if a new account in ZITADEL should be created automatically on login with an external account
isAutoUpdate This property is required. Boolean
enable if a the ZITADEL account fields should be updated automatically on each login
isCreationAllowed This property is required. Boolean
enable if users should be able to create a new account in ZITADEL when using an external account
isLinkingAllowed This property is required. Boolean
enable if users should be able to link an existing ZITADEL user with an external account
tokenEndpoint This property is required. String
The token endpoint
userEndpoint This property is required. String
The user endpoint
name String
Name of the IDP
orgId Changes to this property will trigger replacement. String
ID of the organization
scopes List<String>
the scopes requested by ZITADEL during the request on the identity provider

Outputs

All input properties are implicitly available as output properties. Additionally, the OrgIdpOauth resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing OrgIdpOauth Resource

Get an existing OrgIdpOauth resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: OrgIdpOauthState, opts?: CustomResourceOptions): OrgIdpOauth
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authorization_endpoint: Optional[str] = None,
        client_id: Optional[str] = None,
        client_secret: Optional[str] = None,
        id_attribute: Optional[str] = None,
        is_auto_creation: Optional[bool] = None,
        is_auto_update: Optional[bool] = None,
        is_creation_allowed: Optional[bool] = None,
        is_linking_allowed: Optional[bool] = None,
        name: Optional[str] = None,
        org_id: Optional[str] = None,
        scopes: Optional[Sequence[str]] = None,
        token_endpoint: Optional[str] = None,
        user_endpoint: Optional[str] = None) -> OrgIdpOauth
func GetOrgIdpOauth(ctx *Context, name string, id IDInput, state *OrgIdpOauthState, opts ...ResourceOption) (*OrgIdpOauth, error)
public static OrgIdpOauth Get(string name, Input<string> id, OrgIdpOauthState? state, CustomResourceOptions? opts = null)
public static OrgIdpOauth get(String name, Output<String> id, OrgIdpOauthState state, CustomResourceOptions options)
resources:  _:    type: zitadel:OrgIdpOauth    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AuthorizationEndpoint string
The authorization endpoint
ClientId string
client id generated by the identity provider
ClientSecret string
client secret generated by the identity provider
IdAttribute string
The id attribute
IsAutoCreation bool
enable if a new account in ZITADEL should be created automatically on login with an external account
IsAutoUpdate bool
enable if a the ZITADEL account fields should be updated automatically on each login
IsCreationAllowed bool
enable if users should be able to create a new account in ZITADEL when using an external account
IsLinkingAllowed bool
enable if users should be able to link an existing ZITADEL user with an external account
Name string
Name of the IDP
OrgId Changes to this property will trigger replacement. string
ID of the organization
Scopes List<string>
the scopes requested by ZITADEL during the request on the identity provider
TokenEndpoint string
The token endpoint
UserEndpoint string
The user endpoint
AuthorizationEndpoint string
The authorization endpoint
ClientId string
client id generated by the identity provider
ClientSecret string
client secret generated by the identity provider
IdAttribute string
The id attribute
IsAutoCreation bool
enable if a new account in ZITADEL should be created automatically on login with an external account
IsAutoUpdate bool
enable if a the ZITADEL account fields should be updated automatically on each login
IsCreationAllowed bool
enable if users should be able to create a new account in ZITADEL when using an external account
IsLinkingAllowed bool
enable if users should be able to link an existing ZITADEL user with an external account
Name string
Name of the IDP
OrgId Changes to this property will trigger replacement. string
ID of the organization
Scopes []string
the scopes requested by ZITADEL during the request on the identity provider
TokenEndpoint string
The token endpoint
UserEndpoint string
The user endpoint
authorizationEndpoint String
The authorization endpoint
clientId String
client id generated by the identity provider
clientSecret String
client secret generated by the identity provider
idAttribute String
The id attribute
isAutoCreation Boolean
enable if a new account in ZITADEL should be created automatically on login with an external account
isAutoUpdate Boolean
enable if a the ZITADEL account fields should be updated automatically on each login
isCreationAllowed Boolean
enable if users should be able to create a new account in ZITADEL when using an external account
isLinkingAllowed Boolean
enable if users should be able to link an existing ZITADEL user with an external account
name String
Name of the IDP
orgId Changes to this property will trigger replacement. String
ID of the organization
scopes List<String>
the scopes requested by ZITADEL during the request on the identity provider
tokenEndpoint String
The token endpoint
userEndpoint String
The user endpoint
authorizationEndpoint string
The authorization endpoint
clientId string
client id generated by the identity provider
clientSecret string
client secret generated by the identity provider
idAttribute string
The id attribute
isAutoCreation boolean
enable if a new account in ZITADEL should be created automatically on login with an external account
isAutoUpdate boolean
enable if a the ZITADEL account fields should be updated automatically on each login
isCreationAllowed boolean
enable if users should be able to create a new account in ZITADEL when using an external account
isLinkingAllowed boolean
enable if users should be able to link an existing ZITADEL user with an external account
name string
Name of the IDP
orgId Changes to this property will trigger replacement. string
ID of the organization
scopes string[]
the scopes requested by ZITADEL during the request on the identity provider
tokenEndpoint string
The token endpoint
userEndpoint string
The user endpoint
authorization_endpoint str
The authorization endpoint
client_id str
client id generated by the identity provider
client_secret str
client secret generated by the identity provider
id_attribute str
The id attribute
is_auto_creation bool
enable if a new account in ZITADEL should be created automatically on login with an external account
is_auto_update bool
enable if a the ZITADEL account fields should be updated automatically on each login
is_creation_allowed bool
enable if users should be able to create a new account in ZITADEL when using an external account
is_linking_allowed bool
enable if users should be able to link an existing ZITADEL user with an external account
name str
Name of the IDP
org_id Changes to this property will trigger replacement. str
ID of the organization
scopes Sequence[str]
the scopes requested by ZITADEL during the request on the identity provider
token_endpoint str
The token endpoint
user_endpoint str
The user endpoint
authorizationEndpoint String
The authorization endpoint
clientId String
client id generated by the identity provider
clientSecret String
client secret generated by the identity provider
idAttribute String
The id attribute
isAutoCreation Boolean
enable if a new account in ZITADEL should be created automatically on login with an external account
isAutoUpdate Boolean
enable if a the ZITADEL account fields should be updated automatically on each login
isCreationAllowed Boolean
enable if users should be able to create a new account in ZITADEL when using an external account
isLinkingAllowed Boolean
enable if users should be able to link an existing ZITADEL user with an external account
name String
Name of the IDP
orgId Changes to this property will trigger replacement. String
ID of the organization
scopes List<String>
the scopes requested by ZITADEL during the request on the identity provider
tokenEndpoint String
The token endpoint
userEndpoint String
The user endpoint

Import

bash The resource can be imported using the ID format <id[:org_id][:client_secret]>, e.g.

 $ pulumi import zitadel:index/orgIdpOauth:OrgIdpOauth imported '123456789012345678:123456789012345678:1234567890abcdef'
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
zitadel pulumiverse/pulumi-zitadel
License
Apache-2.0
Notes
This Pulumi package is based on the zitadel Terraform Provider.