1. Packages
  2. Zitadel
  3. API Docs
  4. ApplicationOidc
zitadel v0.0.12 published on Sunday, Jun 11, 2023 by pulumiverse

zitadel.ApplicationOidc

Explore with Pulumi AI

zitadel logo
zitadel v0.0.12 published on Sunday, Jun 11, 2023 by pulumiverse

    Resource representing an OIDC application belonging to a project, with all configuration possibilities.

    Example Usage

    using System.Collections.Generic;
    using Pulumi;
    using Zitadel = Pulumiverse.Zitadel;
    
    return await Deployment.RunAsync(() => 
    {
        var applicationOidc = new Zitadel.ApplicationOidc("applicationOidc", new()
        {
            ProjectId = zitadel_project.Project.Id,
            OrgId = zitadel_org.Org.Id,
            RedirectUris = new[]
            {
                "https://localhost.com",
            },
            ResponseTypes = new[]
            {
                "OIDC_RESPONSE_TYPE_CODE",
            },
            GrantTypes = new[]
            {
                "OIDC_GRANT_TYPE_AUTHORIZATION_CODE",
            },
            PostLogoutRedirectUris = new[]
            {
                "https://localhost.com",
            },
            AppType = "OIDC_APP_TYPE_WEB",
            AuthMethodType = "OIDC_AUTH_METHOD_TYPE_BASIC",
            Version = "OIDC_VERSION_1_0",
            ClockSkew = "0s",
            DevMode = true,
            AccessTokenType = "OIDC_TOKEN_TYPE_BEARER",
            AccessTokenRoleAssertion = false,
            IdTokenRoleAssertion = false,
            IdTokenUserinfoAssertion = false,
            AdditionalOrigins = new[] {},
        });
    
    });
    
    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.NewApplicationOidc(ctx, "applicationOidc", &zitadel.ApplicationOidcArgs{
    			ProjectId: pulumi.Any(zitadel_project.Project.Id),
    			OrgId:     pulumi.Any(zitadel_org.Org.Id),
    			RedirectUris: pulumi.StringArray{
    				pulumi.String("https://localhost.com"),
    			},
    			ResponseTypes: pulumi.StringArray{
    				pulumi.String("OIDC_RESPONSE_TYPE_CODE"),
    			},
    			GrantTypes: pulumi.StringArray{
    				pulumi.String("OIDC_GRANT_TYPE_AUTHORIZATION_CODE"),
    			},
    			PostLogoutRedirectUris: pulumi.StringArray{
    				pulumi.String("https://localhost.com"),
    			},
    			AppType:                  pulumi.String("OIDC_APP_TYPE_WEB"),
    			AuthMethodType:           pulumi.String("OIDC_AUTH_METHOD_TYPE_BASIC"),
    			Version:                  pulumi.String("OIDC_VERSION_1_0"),
    			ClockSkew:                pulumi.String("0s"),
    			DevMode:                  pulumi.Bool(true),
    			AccessTokenType:          pulumi.String("OIDC_TOKEN_TYPE_BEARER"),
    			AccessTokenRoleAssertion: pulumi.Bool(false),
    			IdTokenRoleAssertion:     pulumi.Bool(false),
    			IdTokenUserinfoAssertion: pulumi.Bool(false),
    			AdditionalOrigins:        pulumi.StringArray{},
    		})
    		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.ApplicationOidc;
    import com.pulumi.zitadel.ApplicationOidcArgs;
    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 applicationOidc = new ApplicationOidc("applicationOidc", ApplicationOidcArgs.builder()        
                .projectId(zitadel_project.project().id())
                .orgId(zitadel_org.org().id())
                .redirectUris("https://localhost.com")
                .responseTypes("OIDC_RESPONSE_TYPE_CODE")
                .grantTypes("OIDC_GRANT_TYPE_AUTHORIZATION_CODE")
                .postLogoutRedirectUris("https://localhost.com")
                .appType("OIDC_APP_TYPE_WEB")
                .authMethodType("OIDC_AUTH_METHOD_TYPE_BASIC")
                .version("OIDC_VERSION_1_0")
                .clockSkew("0s")
                .devMode(true)
                .accessTokenType("OIDC_TOKEN_TYPE_BEARER")
                .accessTokenRoleAssertion(false)
                .idTokenRoleAssertion(false)
                .idTokenUserinfoAssertion(false)
                .additionalOrigins()
                .build());
    
        }
    }
    
    import pulumi
    import pulumiverse_zitadel as zitadel
    
    application_oidc = zitadel.ApplicationOidc("applicationOidc",
        project_id=zitadel_project["project"]["id"],
        org_id=zitadel_org["org"]["id"],
        redirect_uris=["https://localhost.com"],
        response_types=["OIDC_RESPONSE_TYPE_CODE"],
        grant_types=["OIDC_GRANT_TYPE_AUTHORIZATION_CODE"],
        post_logout_redirect_uris=["https://localhost.com"],
        app_type="OIDC_APP_TYPE_WEB",
        auth_method_type="OIDC_AUTH_METHOD_TYPE_BASIC",
        version="OIDC_VERSION_1_0",
        clock_skew="0s",
        dev_mode=True,
        access_token_type="OIDC_TOKEN_TYPE_BEARER",
        access_token_role_assertion=False,
        id_token_role_assertion=False,
        id_token_userinfo_assertion=False,
        additional_origins=[])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as zitadel from "@pulumiverse/zitadel";
    
    const applicationOidc = new zitadel.ApplicationOidc("applicationOidc", {
        projectId: zitadel_project.project.id,
        orgId: zitadel_org.org.id,
        redirectUris: ["https://localhost.com"],
        responseTypes: ["OIDC_RESPONSE_TYPE_CODE"],
        grantTypes: ["OIDC_GRANT_TYPE_AUTHORIZATION_CODE"],
        postLogoutRedirectUris: ["https://localhost.com"],
        appType: "OIDC_APP_TYPE_WEB",
        authMethodType: "OIDC_AUTH_METHOD_TYPE_BASIC",
        version: "OIDC_VERSION_1_0",
        clockSkew: "0s",
        devMode: true,
        accessTokenType: "OIDC_TOKEN_TYPE_BEARER",
        accessTokenRoleAssertion: false,
        idTokenRoleAssertion: false,
        idTokenUserinfoAssertion: false,
        additionalOrigins: [],
    });
    
    resources:
      applicationOidc:
        type: zitadel:ApplicationOidc
        properties:
          projectId: ${zitadel_project.project.id}
          orgId: ${zitadel_org.org.id}
          redirectUris:
            - https://localhost.com
          responseTypes:
            - OIDC_RESPONSE_TYPE_CODE
          grantTypes:
            - OIDC_GRANT_TYPE_AUTHORIZATION_CODE
          postLogoutRedirectUris:
            - https://localhost.com
          appType: OIDC_APP_TYPE_WEB
          authMethodType: OIDC_AUTH_METHOD_TYPE_BASIC
          version: OIDC_VERSION_1_0
          clockSkew: 0s
          devMode: true
          accessTokenType: OIDC_TOKEN_TYPE_BEARER
          accessTokenRoleAssertion: false
          idTokenRoleAssertion: false
          idTokenUserinfoAssertion: false
          additionalOrigins: []
    

    Create ApplicationOidc Resource

    new ApplicationOidc(name: string, args: ApplicationOidcArgs, opts?: CustomResourceOptions);
    @overload
    def ApplicationOidc(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        access_token_role_assertion: Optional[bool] = None,
                        access_token_type: Optional[str] = None,
                        additional_origins: Optional[Sequence[str]] = None,
                        app_type: Optional[str] = None,
                        auth_method_type: Optional[str] = None,
                        clock_skew: Optional[str] = None,
                        dev_mode: Optional[bool] = None,
                        grant_types: Optional[Sequence[str]] = None,
                        id_token_role_assertion: Optional[bool] = None,
                        id_token_userinfo_assertion: Optional[bool] = None,
                        name: Optional[str] = None,
                        org_id: Optional[str] = None,
                        post_logout_redirect_uris: Optional[Sequence[str]] = None,
                        project_id: Optional[str] = None,
                        redirect_uris: Optional[Sequence[str]] = None,
                        response_types: Optional[Sequence[str]] = None,
                        version: Optional[str] = None)
    @overload
    def ApplicationOidc(resource_name: str,
                        args: ApplicationOidcArgs,
                        opts: Optional[ResourceOptions] = None)
    func NewApplicationOidc(ctx *Context, name string, args ApplicationOidcArgs, opts ...ResourceOption) (*ApplicationOidc, error)
    public ApplicationOidc(string name, ApplicationOidcArgs args, CustomResourceOptions? opts = null)
    public ApplicationOidc(String name, ApplicationOidcArgs args)
    public ApplicationOidc(String name, ApplicationOidcArgs args, CustomResourceOptions options)
    
    type: zitadel:ApplicationOidc
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ApplicationOidcArgs
    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 ApplicationOidcArgs
    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 ApplicationOidcArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationOidcArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationOidcArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ApplicationOidc Resource Properties

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

    Inputs

    The ApplicationOidc resource accepts the following input properties:

    GrantTypes List<string>

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    OrgId string

    orgID of the application

    ProjectId string

    ID of the project

    RedirectUris List<string>

    RedirectURIs

    ResponseTypes List<string>

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    AccessTokenRoleAssertion bool

    Access token role assertion

    AccessTokenType string

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    AdditionalOrigins List<string>

    Additional origins

    AppType string

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    AuthMethodType string

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    ClockSkew string

    Clockskew

    DevMode bool

    Dev mode

    IdTokenRoleAssertion bool

    ID token role assertion

    IdTokenUserinfoAssertion bool

    Token userinfo assertion

    Name string

    Name of the application

    PostLogoutRedirectUris List<string>

    Post logout redirect URIs

    Version string

    Version, supported values: OIDCVERSION1_0

    GrantTypes []string

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    OrgId string

    orgID of the application

    ProjectId string

    ID of the project

    RedirectUris []string

    RedirectURIs

    ResponseTypes []string

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    AccessTokenRoleAssertion bool

    Access token role assertion

    AccessTokenType string

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    AdditionalOrigins []string

    Additional origins

    AppType string

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    AuthMethodType string

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    ClockSkew string

    Clockskew

    DevMode bool

    Dev mode

    IdTokenRoleAssertion bool

    ID token role assertion

    IdTokenUserinfoAssertion bool

    Token userinfo assertion

    Name string

    Name of the application

    PostLogoutRedirectUris []string

    Post logout redirect URIs

    Version string

    Version, supported values: OIDCVERSION1_0

    grantTypes List<String>

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    orgId String

    orgID of the application

    projectId String

    ID of the project

    redirectUris List<String>

    RedirectURIs

    responseTypes List<String>

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    accessTokenRoleAssertion Boolean

    Access token role assertion

    accessTokenType String

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    additionalOrigins List<String>

    Additional origins

    appType String

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    authMethodType String

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    clockSkew String

    Clockskew

    devMode Boolean

    Dev mode

    idTokenRoleAssertion Boolean

    ID token role assertion

    idTokenUserinfoAssertion Boolean

    Token userinfo assertion

    name String

    Name of the application

    postLogoutRedirectUris List<String>

    Post logout redirect URIs

    version String

    Version, supported values: OIDCVERSION1_0

    grantTypes string[]

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    orgId string

    orgID of the application

    projectId string

    ID of the project

    redirectUris string[]

    RedirectURIs

    responseTypes string[]

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    accessTokenRoleAssertion boolean

    Access token role assertion

    accessTokenType string

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    additionalOrigins string[]

    Additional origins

    appType string

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    authMethodType string

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    clockSkew string

    Clockskew

    devMode boolean

    Dev mode

    idTokenRoleAssertion boolean

    ID token role assertion

    idTokenUserinfoAssertion boolean

    Token userinfo assertion

    name string

    Name of the application

    postLogoutRedirectUris string[]

    Post logout redirect URIs

    version string

    Version, supported values: OIDCVERSION1_0

    grant_types Sequence[str]

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    org_id str

    orgID of the application

    project_id str

    ID of the project

    redirect_uris Sequence[str]

    RedirectURIs

    response_types Sequence[str]

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    access_token_role_assertion bool

    Access token role assertion

    access_token_type str

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    additional_origins Sequence[str]

    Additional origins

    app_type str

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    auth_method_type str

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    clock_skew str

    Clockskew

    dev_mode bool

    Dev mode

    id_token_role_assertion bool

    ID token role assertion

    id_token_userinfo_assertion bool

    Token userinfo assertion

    name str

    Name of the application

    post_logout_redirect_uris Sequence[str]

    Post logout redirect URIs

    version str

    Version, supported values: OIDCVERSION1_0

    grantTypes List<String>

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    orgId String

    orgID of the application

    projectId String

    ID of the project

    redirectUris List<String>

    RedirectURIs

    responseTypes List<String>

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    accessTokenRoleAssertion Boolean

    Access token role assertion

    accessTokenType String

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    additionalOrigins List<String>

    Additional origins

    appType String

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    authMethodType String

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    clockSkew String

    Clockskew

    devMode Boolean

    Dev mode

    idTokenRoleAssertion Boolean

    ID token role assertion

    idTokenUserinfoAssertion Boolean

    Token userinfo assertion

    name String

    Name of the application

    postLogoutRedirectUris List<String>

    Post logout redirect URIs

    version String

    Version, supported values: OIDCVERSION1_0

    Outputs

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

    ClientId string

    generated ID for this config

    ClientSecret string

    generated secret for this config

    Id string

    The provider-assigned unique ID for this managed resource.

    ClientId string

    generated ID for this config

    ClientSecret string

    generated secret for this config

    Id string

    The provider-assigned unique ID for this managed resource.

    clientId String

    generated ID for this config

    clientSecret String

    generated secret for this config

    id String

    The provider-assigned unique ID for this managed resource.

    clientId string

    generated ID for this config

    clientSecret string

    generated secret for this config

    id string

    The provider-assigned unique ID for this managed resource.

    client_id str

    generated ID for this config

    client_secret str

    generated secret for this config

    id str

    The provider-assigned unique ID for this managed resource.

    clientId String

    generated ID for this config

    clientSecret String

    generated secret for this config

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing ApplicationOidc Resource

    Get an existing ApplicationOidc 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?: ApplicationOidcState, opts?: CustomResourceOptions): ApplicationOidc
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_token_role_assertion: Optional[bool] = None,
            access_token_type: Optional[str] = None,
            additional_origins: Optional[Sequence[str]] = None,
            app_type: Optional[str] = None,
            auth_method_type: Optional[str] = None,
            client_id: Optional[str] = None,
            client_secret: Optional[str] = None,
            clock_skew: Optional[str] = None,
            dev_mode: Optional[bool] = None,
            grant_types: Optional[Sequence[str]] = None,
            id_token_role_assertion: Optional[bool] = None,
            id_token_userinfo_assertion: Optional[bool] = None,
            name: Optional[str] = None,
            org_id: Optional[str] = None,
            post_logout_redirect_uris: Optional[Sequence[str]] = None,
            project_id: Optional[str] = None,
            redirect_uris: Optional[Sequence[str]] = None,
            response_types: Optional[Sequence[str]] = None,
            version: Optional[str] = None) -> ApplicationOidc
    func GetApplicationOidc(ctx *Context, name string, id IDInput, state *ApplicationOidcState, opts ...ResourceOption) (*ApplicationOidc, error)
    public static ApplicationOidc Get(string name, Input<string> id, ApplicationOidcState? state, CustomResourceOptions? opts = null)
    public static ApplicationOidc get(String name, Output<String> id, ApplicationOidcState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    AccessTokenRoleAssertion bool

    Access token role assertion

    AccessTokenType string

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    AdditionalOrigins List<string>

    Additional origins

    AppType string

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    AuthMethodType string

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    ClientId string

    generated ID for this config

    ClientSecret string

    generated secret for this config

    ClockSkew string

    Clockskew

    DevMode bool

    Dev mode

    GrantTypes List<string>

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    IdTokenRoleAssertion bool

    ID token role assertion

    IdTokenUserinfoAssertion bool

    Token userinfo assertion

    Name string

    Name of the application

    OrgId string

    orgID of the application

    PostLogoutRedirectUris List<string>

    Post logout redirect URIs

    ProjectId string

    ID of the project

    RedirectUris List<string>

    RedirectURIs

    ResponseTypes List<string>

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    Version string

    Version, supported values: OIDCVERSION1_0

    AccessTokenRoleAssertion bool

    Access token role assertion

    AccessTokenType string

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    AdditionalOrigins []string

    Additional origins

    AppType string

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    AuthMethodType string

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    ClientId string

    generated ID for this config

    ClientSecret string

    generated secret for this config

    ClockSkew string

    Clockskew

    DevMode bool

    Dev mode

    GrantTypes []string

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    IdTokenRoleAssertion bool

    ID token role assertion

    IdTokenUserinfoAssertion bool

    Token userinfo assertion

    Name string

    Name of the application

    OrgId string

    orgID of the application

    PostLogoutRedirectUris []string

    Post logout redirect URIs

    ProjectId string

    ID of the project

    RedirectUris []string

    RedirectURIs

    ResponseTypes []string

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    Version string

    Version, supported values: OIDCVERSION1_0

    accessTokenRoleAssertion Boolean

    Access token role assertion

    accessTokenType String

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    additionalOrigins List<String>

    Additional origins

    appType String

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    authMethodType String

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    clientId String

    generated ID for this config

    clientSecret String

    generated secret for this config

    clockSkew String

    Clockskew

    devMode Boolean

    Dev mode

    grantTypes List<String>

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    idTokenRoleAssertion Boolean

    ID token role assertion

    idTokenUserinfoAssertion Boolean

    Token userinfo assertion

    name String

    Name of the application

    orgId String

    orgID of the application

    postLogoutRedirectUris List<String>

    Post logout redirect URIs

    projectId String

    ID of the project

    redirectUris List<String>

    RedirectURIs

    responseTypes List<String>

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    version String

    Version, supported values: OIDCVERSION1_0

    accessTokenRoleAssertion boolean

    Access token role assertion

    accessTokenType string

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    additionalOrigins string[]

    Additional origins

    appType string

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    authMethodType string

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    clientId string

    generated ID for this config

    clientSecret string

    generated secret for this config

    clockSkew string

    Clockskew

    devMode boolean

    Dev mode

    grantTypes string[]

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    idTokenRoleAssertion boolean

    ID token role assertion

    idTokenUserinfoAssertion boolean

    Token userinfo assertion

    name string

    Name of the application

    orgId string

    orgID of the application

    postLogoutRedirectUris string[]

    Post logout redirect URIs

    projectId string

    ID of the project

    redirectUris string[]

    RedirectURIs

    responseTypes string[]

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    version string

    Version, supported values: OIDCVERSION1_0

    access_token_role_assertion bool

    Access token role assertion

    access_token_type str

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    additional_origins Sequence[str]

    Additional origins

    app_type str

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    auth_method_type str

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    client_id str

    generated ID for this config

    client_secret str

    generated secret for this config

    clock_skew str

    Clockskew

    dev_mode bool

    Dev mode

    grant_types Sequence[str]

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    id_token_role_assertion bool

    ID token role assertion

    id_token_userinfo_assertion bool

    Token userinfo assertion

    name str

    Name of the application

    org_id str

    orgID of the application

    post_logout_redirect_uris Sequence[str]

    Post logout redirect URIs

    project_id str

    ID of the project

    redirect_uris Sequence[str]

    RedirectURIs

    response_types Sequence[str]

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    version str

    Version, supported values: OIDCVERSION1_0

    accessTokenRoleAssertion Boolean

    Access token role assertion

    accessTokenType String

    Access token type, supported values: OIDCTOKENTYPEBEARER, OIDCTOKENTYPEJWT

    additionalOrigins List<String>

    Additional origins

    appType String

    App type, supported values: OIDCAPPTYPEWEB, OIDCAPPTYPEUSERAGENT, OIDCAPPTYPENATIVE

    authMethodType String

    Auth method type, supported values: OIDCAUTHMETHODTYPEBASIC, OIDCAUTHMETHODTYPEPOST, OIDCAUTHMETHODTYPENONE, OIDCAUTHMETHODTYPEPRIVATEKEYJWT

    clientId String

    generated ID for this config

    clientSecret String

    generated secret for this config

    clockSkew String

    Clockskew

    devMode Boolean

    Dev mode

    grantTypes List<String>

    Grant types, supported values: OIDCGRANTTYPEAUTHORIZATIONCODE, OIDCGRANTTYPEIMPLICIT, OIDCGRANTTYPEREFRESH_TOKEN

    idTokenRoleAssertion Boolean

    ID token role assertion

    idTokenUserinfoAssertion Boolean

    Token userinfo assertion

    name String

    Name of the application

    orgId String

    orgID of the application

    postLogoutRedirectUris List<String>

    Post logout redirect URIs

    projectId String

    ID of the project

    redirectUris List<String>

    RedirectURIs

    responseTypes List<String>

    Response type, supported values: OIDCRESPONSETYPECODE, OIDCRESPONSETYPEIDTOKEN, OIDCRESPONSETYPEIDTOKENTOKEN

    version String

    Version, supported values: OIDCVERSION1_0

    Package Details

    Repository
    zitadel pulumiverse/pulumi-zitadel
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the zitadel Terraform Provider.

    zitadel logo
    zitadel v0.0.12 published on Sunday, Jun 11, 2023 by pulumiverse