zitadel.IdpOauth
Explore with Pulumi AI
Resource representing a generic OAuth2 IDP on the instance.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Zitadel = Pulumiverse.Zitadel;
return await Deployment.RunAsync(() =>
{
var @default = new Zitadel.IdpOauth("default", new()
{
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,
});
});
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.NewIdpOauth(ctx, "default", &zitadel.IdpOauthArgs{
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
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zitadel.IdpOauth;
import com.pulumi.zitadel.IdpOauthArgs;
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 IdpOauth("default", IdpOauthArgs.builder()
.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());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as zitadel from "@pulumiverse/zitadel";
const _default = new zitadel.IdpOauth("default", {
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,
});
import pulumi
import pulumiverse_zitadel as zitadel
default = zitadel.IdpOauth("default",
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)
resources:
default:
type: zitadel:IdpOauth
properties:
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
Create IdpOauth Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IdpOauth(name: string, args: IdpOauthArgs, opts?: CustomResourceOptions);
@overload
def IdpOauth(resource_name: str,
args: IdpOauthArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IdpOauth(resource_name: 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,
token_endpoint: Optional[str] = None,
user_endpoint: Optional[str] = None,
name: Optional[str] = None,
scopes: Optional[Sequence[str]] = None)
func NewIdpOauth(ctx *Context, name string, args IdpOauthArgs, opts ...ResourceOption) (*IdpOauth, error)
public IdpOauth(string name, IdpOauthArgs args, CustomResourceOptions? opts = null)
public IdpOauth(String name, IdpOauthArgs args)
public IdpOauth(String name, IdpOauthArgs args, CustomResourceOptions options)
type: zitadel:IdpOauth
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IdpOauthArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IdpOauthArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IdpOauthArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IdpOauthArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IdpOauthArgs
- 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 idpOauthResource = new Zitadel.IdpOauth("idpOauthResource", new()
{
AuthorizationEndpoint = "string",
ClientId = "string",
ClientSecret = "string",
IdAttribute = "string",
IsAutoCreation = false,
IsAutoUpdate = false,
IsCreationAllowed = false,
IsLinkingAllowed = false,
TokenEndpoint = "string",
UserEndpoint = "string",
Name = "string",
Scopes = new[]
{
"string",
},
});
example, err := zitadel.NewIdpOauth(ctx, "idpOauthResource", &zitadel.IdpOauthArgs{
AuthorizationEndpoint: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
IdAttribute: pulumi.String("string"),
IsAutoCreation: pulumi.Bool(false),
IsAutoUpdate: pulumi.Bool(false),
IsCreationAllowed: pulumi.Bool(false),
IsLinkingAllowed: pulumi.Bool(false),
TokenEndpoint: pulumi.String("string"),
UserEndpoint: pulumi.String("string"),
Name: pulumi.String("string"),
Scopes: pulumi.StringArray{
pulumi.String("string"),
},
})
var idpOauthResource = new IdpOauth("idpOauthResource", IdpOauthArgs.builder()
.authorizationEndpoint("string")
.clientId("string")
.clientSecret("string")
.idAttribute("string")
.isAutoCreation(false)
.isAutoUpdate(false)
.isCreationAllowed(false)
.isLinkingAllowed(false)
.tokenEndpoint("string")
.userEndpoint("string")
.name("string")
.scopes("string")
.build());
idp_oauth_resource = zitadel.IdpOauth("idpOauthResource",
authorization_endpoint="string",
client_id="string",
client_secret="string",
id_attribute="string",
is_auto_creation=False,
is_auto_update=False,
is_creation_allowed=False,
is_linking_allowed=False,
token_endpoint="string",
user_endpoint="string",
name="string",
scopes=["string"])
const idpOauthResource = new zitadel.IdpOauth("idpOauthResource", {
authorizationEndpoint: "string",
clientId: "string",
clientSecret: "string",
idAttribute: "string",
isAutoCreation: false,
isAutoUpdate: false,
isCreationAllowed: false,
isLinkingAllowed: false,
tokenEndpoint: "string",
userEndpoint: "string",
name: "string",
scopes: ["string"],
});
type: zitadel:IdpOauth
properties:
authorizationEndpoint: string
clientId: string
clientSecret: string
idAttribute: string
isAutoCreation: false
isAutoUpdate: false
isCreationAllowed: false
isLinkingAllowed: false
name: string
scopes:
- string
tokenEndpoint: string
userEndpoint: string
IdpOauth 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 IdpOauth resource accepts the following input properties:
- string
- The authorization endpoint
- Client
Id string - client id generated by the identity provider
- Client
Secret string - client secret generated by the identity provider
- Id
Attribute string - The id attribute
- Is
Auto boolCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- Is
Auto boolUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- Is
Creation boolAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- Is
Linking boolAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- Token
Endpoint string - The token endpoint
- User
Endpoint string - The user endpoint
- Name string
- Name of the IDP
- Scopes List<string>
- the scopes requested by ZITADEL during the request on the identity provider
- string
- The authorization endpoint
- Client
Id string - client id generated by the identity provider
- Client
Secret string - client secret generated by the identity provider
- Id
Attribute string - The id attribute
- Is
Auto boolCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- Is
Auto boolUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- Is
Creation boolAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- Is
Linking boolAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- Token
Endpoint string - The token endpoint
- User
Endpoint string - The user endpoint
- Name string
- Name of the IDP
- Scopes []string
- the scopes requested by ZITADEL during the request on the identity provider
- String
- The authorization endpoint
- client
Id String - client id generated by the identity provider
- client
Secret String - client secret generated by the identity provider
- id
Attribute String - The id attribute
- is
Auto BooleanCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- is
Auto BooleanUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- is
Creation BooleanAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- is
Linking BooleanAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- token
Endpoint String - The token endpoint
- user
Endpoint String - The user endpoint
- name String
- Name of the IDP
- scopes List<String>
- the scopes requested by ZITADEL during the request on the identity provider
- string
- The authorization endpoint
- client
Id string - client id generated by the identity provider
- client
Secret string - client secret generated by the identity provider
- id
Attribute string - The id attribute
- is
Auto booleanCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- is
Auto booleanUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- is
Creation booleanAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- is
Linking booleanAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- token
Endpoint string - The token endpoint
- user
Endpoint string - The user endpoint
- name string
- Name of the IDP
- scopes string[]
- the scopes requested by ZITADEL during the request on the identity provider
- 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_ boolcreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- is_
auto_ boolupdate - enable if a the ZITADEL account fields should be updated automatically on each login
- is_
creation_ boolallowed - enable if users should be able to create a new account in ZITADEL when using an external account
- is_
linking_ boolallowed - enable if users should be able to link an existing ZITADEL user with an external account
- token_
endpoint str - The token endpoint
- user_
endpoint str - The user endpoint
- name str
- Name of the IDP
- scopes Sequence[str]
- the scopes requested by ZITADEL during the request on the identity provider
- String
- The authorization endpoint
- client
Id String - client id generated by the identity provider
- client
Secret String - client secret generated by the identity provider
- id
Attribute String - The id attribute
- is
Auto BooleanCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- is
Auto BooleanUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- is
Creation BooleanAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- is
Linking BooleanAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- token
Endpoint String - The token endpoint
- user
Endpoint String - The user endpoint
- name String
- Name of the IDP
- 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 IdpOauth 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 IdpOauth Resource
Get an existing IdpOauth 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?: IdpOauthState, opts?: CustomResourceOptions): IdpOauth
@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,
scopes: Optional[Sequence[str]] = None,
token_endpoint: Optional[str] = None,
user_endpoint: Optional[str] = None) -> IdpOauth
func GetIdpOauth(ctx *Context, name string, id IDInput, state *IdpOauthState, opts ...ResourceOption) (*IdpOauth, error)
public static IdpOauth Get(string name, Input<string> id, IdpOauthState? state, CustomResourceOptions? opts = null)
public static IdpOauth get(String name, Output<String> id, IdpOauthState state, CustomResourceOptions options)
resources: _: type: zitadel:IdpOauth get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- string
- The authorization endpoint
- Client
Id string - client id generated by the identity provider
- Client
Secret string - client secret generated by the identity provider
- Id
Attribute string - The id attribute
- Is
Auto boolCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- Is
Auto boolUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- Is
Creation boolAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- Is
Linking boolAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- Name string
- Name of the IDP
- Scopes List<string>
- the scopes requested by ZITADEL during the request on the identity provider
- Token
Endpoint string - The token endpoint
- User
Endpoint string - The user endpoint
- string
- The authorization endpoint
- Client
Id string - client id generated by the identity provider
- Client
Secret string - client secret generated by the identity provider
- Id
Attribute string - The id attribute
- Is
Auto boolCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- Is
Auto boolUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- Is
Creation boolAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- Is
Linking boolAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- Name string
- Name of the IDP
- Scopes []string
- the scopes requested by ZITADEL during the request on the identity provider
- Token
Endpoint string - The token endpoint
- User
Endpoint string - The user endpoint
- String
- The authorization endpoint
- client
Id String - client id generated by the identity provider
- client
Secret String - client secret generated by the identity provider
- id
Attribute String - The id attribute
- is
Auto BooleanCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- is
Auto BooleanUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- is
Creation BooleanAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- is
Linking BooleanAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- name String
- Name of the IDP
- scopes List<String>
- the scopes requested by ZITADEL during the request on the identity provider
- token
Endpoint String - The token endpoint
- user
Endpoint String - The user endpoint
- string
- The authorization endpoint
- client
Id string - client id generated by the identity provider
- client
Secret string - client secret generated by the identity provider
- id
Attribute string - The id attribute
- is
Auto booleanCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- is
Auto booleanUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- is
Creation booleanAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- is
Linking booleanAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- name string
- Name of the IDP
- scopes string[]
- the scopes requested by ZITADEL during the request on the identity provider
- token
Endpoint string - The token endpoint
- user
Endpoint string - The user 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_ boolcreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- is_
auto_ boolupdate - enable if a the ZITADEL account fields should be updated automatically on each login
- is_
creation_ boolallowed - enable if users should be able to create a new account in ZITADEL when using an external account
- is_
linking_ boolallowed - enable if users should be able to link an existing ZITADEL user with an external account
- name str
- Name of the IDP
- 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
- String
- The authorization endpoint
- client
Id String - client id generated by the identity provider
- client
Secret String - client secret generated by the identity provider
- id
Attribute String - The id attribute
- is
Auto BooleanCreation - enable if a new account in ZITADEL should be created automatically on login with an external account
- is
Auto BooleanUpdate - enable if a the ZITADEL account fields should be updated automatically on each login
- is
Creation BooleanAllowed - enable if users should be able to create a new account in ZITADEL when using an external account
- is
Linking BooleanAllowed - enable if users should be able to link an existing ZITADEL user with an external account
- name String
- Name of the IDP
- scopes List<String>
- the scopes requested by ZITADEL during the request on the identity provider
- token
Endpoint String - The token endpoint
- user
Endpoint String - The user endpoint
Import
bash The resource can be imported using the ID format <id[:client_secret]>
, e.g.
$ pulumi import zitadel:index/idpOauth:IdpOauth imported '123456789012345678:1234567890abcdef'
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.