1. Packages
  2. Authentik Provider
  3. API Docs
  4. StageSource
authentik 2025.2.0 published on Monday, Mar 24, 2025 by goauthentik

authentik.StageSource

Explore with Pulumi AI

authentik logo
authentik 2025.2.0 published on Monday, Mar 24, 2025 by goauthentik

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as authentik from "@pulumi/authentik";
    
    const default_authorization_flow = authentik.getFlow({
        slug: "default-provider-authorization-implicit-consent",
    });
    const nameSourceOauth = new authentik.SourceOauth("nameSourceOauth", {
        slug: "discord",
        authenticationFlow: default_authorization_flow.then(default_authorization_flow => default_authorization_flow.id),
        enrollmentFlow: default_authorization_flow.then(default_authorization_flow => default_authorization_flow.id),
        providerType: "discord",
        consumerKey: "foo",
        consumerSecret: "bar",
    });
    // Create a source stage using the source defined above
    const nameStageSource = new authentik.StageSource("nameStageSource", {source: nameSourceOauth.sourceOauthId});
    
    import pulumi
    import pulumi_authentik as authentik
    
    default_authorization_flow = authentik.get_flow(slug="default-provider-authorization-implicit-consent")
    name_source_oauth = authentik.SourceOauth("nameSourceOauth",
        slug="discord",
        authentication_flow=default_authorization_flow.id,
        enrollment_flow=default_authorization_flow.id,
        provider_type="discord",
        consumer_key="foo",
        consumer_secret="bar")
    # Create a source stage using the source defined above
    name_stage_source = authentik.StageSource("nameStageSource", source=name_source_oauth.source_oauth_id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/authentik/v2025/authentik"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		default_authorization_flow, err := authentik.LookupFlow(ctx, &authentik.LookupFlowArgs{
    			Slug: pulumi.StringRef("default-provider-authorization-implicit-consent"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		nameSourceOauth, err := authentik.NewSourceOauth(ctx, "nameSourceOauth", &authentik.SourceOauthArgs{
    			Slug:               pulumi.String("discord"),
    			AuthenticationFlow: pulumi.String(default_authorization_flow.Id),
    			EnrollmentFlow:     pulumi.String(default_authorization_flow.Id),
    			ProviderType:       pulumi.String("discord"),
    			ConsumerKey:        pulumi.String("foo"),
    			ConsumerSecret:     pulumi.String("bar"),
    		})
    		if err != nil {
    			return err
    		}
    		// Create a source stage using the source defined above
    		_, err = authentik.NewStageSource(ctx, "nameStageSource", &authentik.StageSourceArgs{
    			Source: nameSourceOauth.SourceOauthId,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Authentik = Pulumi.Authentik;
    
    return await Deployment.RunAsync(() => 
    {
        var default_authorization_flow = Authentik.GetFlow.Invoke(new()
        {
            Slug = "default-provider-authorization-implicit-consent",
        });
    
        var nameSourceOauth = new Authentik.SourceOauth("nameSourceOauth", new()
        {
            Slug = "discord",
            AuthenticationFlow = default_authorization_flow.Apply(default_authorization_flow => default_authorization_flow.Apply(getFlowResult => getFlowResult.Id)),
            EnrollmentFlow = default_authorization_flow.Apply(default_authorization_flow => default_authorization_flow.Apply(getFlowResult => getFlowResult.Id)),
            ProviderType = "discord",
            ConsumerKey = "foo",
            ConsumerSecret = "bar",
        });
    
        // Create a source stage using the source defined above
        var nameStageSource = new Authentik.StageSource("nameStageSource", new()
        {
            Source = nameSourceOauth.SourceOauthId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.authentik.AuthentikFunctions;
    import com.pulumi.authentik.inputs.GetFlowArgs;
    import com.pulumi.authentik.SourceOauth;
    import com.pulumi.authentik.SourceOauthArgs;
    import com.pulumi.authentik.StageSource;
    import com.pulumi.authentik.StageSourceArgs;
    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) {
            final var default-authorization-flow = AuthentikFunctions.getFlow(GetFlowArgs.builder()
                .slug("default-provider-authorization-implicit-consent")
                .build());
    
            var nameSourceOauth = new SourceOauth("nameSourceOauth", SourceOauthArgs.builder()
                .slug("discord")
                .authenticationFlow(default_authorization_flow.id())
                .enrollmentFlow(default_authorization_flow.id())
                .providerType("discord")
                .consumerKey("foo")
                .consumerSecret("bar")
                .build());
    
            // Create a source stage using the source defined above
            var nameStageSource = new StageSource("nameStageSource", StageSourceArgs.builder()
                .source(nameSourceOauth.sourceOauthId())
                .build());
    
        }
    }
    
    resources:
      nameSourceOauth:
        type: authentik:SourceOauth
        properties:
          slug: discord
          authenticationFlow: ${["default-authorization-flow"].id}
          enrollmentFlow: ${["default-authorization-flow"].id}
          providerType: discord
          consumerKey: foo
          consumerSecret: bar
      # Create a source stage using the source defined above
      nameStageSource:
        type: authentik:StageSource
        properties:
          source: ${nameSourceOauth.sourceOauthId}
    variables:
      default-authorization-flow:
        fn::invoke:
          function: authentik:getFlow
          arguments:
            slug: default-provider-authorization-implicit-consent
    

    Create StageSource Resource

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

    Constructor syntax

    new StageSource(name: string, args?: StageSourceArgs, opts?: CustomResourceOptions);
    @overload
    def StageSource(resource_name: str,
                    args: Optional[StageSourceArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def StageSource(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    name: Optional[str] = None,
                    resume_timeout: Optional[str] = None,
                    source: Optional[str] = None,
                    stage_source_id: Optional[str] = None)
    func NewStageSource(ctx *Context, name string, args *StageSourceArgs, opts ...ResourceOption) (*StageSource, error)
    public StageSource(string name, StageSourceArgs? args = null, CustomResourceOptions? opts = null)
    public StageSource(String name, StageSourceArgs args)
    public StageSource(String name, StageSourceArgs args, CustomResourceOptions options)
    
    type: authentik:StageSource
    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 StageSourceArgs
    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 StageSourceArgs
    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 StageSourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StageSourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StageSourceArgs
    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 stageSourceResource = new Authentik.StageSource("stageSourceResource", new()
    {
        Name = "string",
        ResumeTimeout = "string",
        Source = "string",
        StageSourceId = "string",
    });
    
    example, err := authentik.NewStageSource(ctx, "stageSourceResource", &authentik.StageSourceArgs{
    	Name:          pulumi.String("string"),
    	ResumeTimeout: pulumi.String("string"),
    	Source:        pulumi.String("string"),
    	StageSourceId: pulumi.String("string"),
    })
    
    var stageSourceResource = new StageSource("stageSourceResource", StageSourceArgs.builder()
        .name("string")
        .resumeTimeout("string")
        .source("string")
        .stageSourceId("string")
        .build());
    
    stage_source_resource = authentik.StageSource("stageSourceResource",
        name="string",
        resume_timeout="string",
        source="string",
        stage_source_id="string")
    
    const stageSourceResource = new authentik.StageSource("stageSourceResource", {
        name: "string",
        resumeTimeout: "string",
        source: "string",
        stageSourceId: "string",
    });
    
    type: authentik:StageSource
    properties:
        name: string
        resumeTimeout: string
        source: string
        stageSourceId: string
    

    StageSource 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 StageSource resource accepts the following input properties:

    Name string
    ResumeTimeout string
    Defaults to minutes=10.
    Source string
    StageSourceId string
    The ID of this resource.
    Name string
    ResumeTimeout string
    Defaults to minutes=10.
    Source string
    StageSourceId string
    The ID of this resource.
    name String
    resumeTimeout String
    Defaults to minutes=10.
    source String
    stageSourceId String
    The ID of this resource.
    name string
    resumeTimeout string
    Defaults to minutes=10.
    source string
    stageSourceId string
    The ID of this resource.
    name str
    resume_timeout str
    Defaults to minutes=10.
    source str
    stage_source_id str
    The ID of this resource.
    name String
    resumeTimeout String
    Defaults to minutes=10.
    source String
    stageSourceId String
    The ID of this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the StageSource 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 StageSource Resource

    Get an existing StageSource 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?: StageSourceState, opts?: CustomResourceOptions): StageSource
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            name: Optional[str] = None,
            resume_timeout: Optional[str] = None,
            source: Optional[str] = None,
            stage_source_id: Optional[str] = None) -> StageSource
    func GetStageSource(ctx *Context, name string, id IDInput, state *StageSourceState, opts ...ResourceOption) (*StageSource, error)
    public static StageSource Get(string name, Input<string> id, StageSourceState? state, CustomResourceOptions? opts = null)
    public static StageSource get(String name, Output<String> id, StageSourceState state, CustomResourceOptions options)
    resources:  _:    type: authentik:StageSource    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.
    The following state arguments are supported:
    Name string
    ResumeTimeout string
    Defaults to minutes=10.
    Source string
    StageSourceId string
    The ID of this resource.
    Name string
    ResumeTimeout string
    Defaults to minutes=10.
    Source string
    StageSourceId string
    The ID of this resource.
    name String
    resumeTimeout String
    Defaults to minutes=10.
    source String
    stageSourceId String
    The ID of this resource.
    name string
    resumeTimeout string
    Defaults to minutes=10.
    source string
    stageSourceId string
    The ID of this resource.
    name str
    resume_timeout str
    Defaults to minutes=10.
    source str
    stage_source_id str
    The ID of this resource.
    name String
    resumeTimeout String
    Defaults to minutes=10.
    source String
    stageSourceId String
    The ID of this resource.

    Package Details

    Repository
    authentik goauthentik/terraform-provider-authentik
    License
    Notes
    This Pulumi package is based on the authentik Terraform Provider.
    authentik logo
    authentik 2025.2.0 published on Monday, Mar 24, 2025 by goauthentik