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

authentik.StageAuthenticatorDuo

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 name = new authentik.StageAuthenticatorDuo("name", {
        apiHostname: "http://foo.bar.baz",
        clientId: "foo",
        clientSecret: "bar",
    });
    
    import pulumi
    import pulumi_authentik as authentik
    
    name = authentik.StageAuthenticatorDuo("name",
        api_hostname="http://foo.bar.baz",
        client_id="foo",
        client_secret="bar")
    
    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 {
    		_, err := authentik.NewStageAuthenticatorDuo(ctx, "name", &authentik.StageAuthenticatorDuoArgs{
    			ApiHostname:  pulumi.String("http://foo.bar.baz"),
    			ClientId:     pulumi.String("foo"),
    			ClientSecret: pulumi.String("bar"),
    		})
    		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 name = new Authentik.StageAuthenticatorDuo("name", new()
        {
            ApiHostname = "http://foo.bar.baz",
            ClientId = "foo",
            ClientSecret = "bar",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.authentik.StageAuthenticatorDuo;
    import com.pulumi.authentik.StageAuthenticatorDuoArgs;
    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 name = new StageAuthenticatorDuo("name", StageAuthenticatorDuoArgs.builder()
                .apiHostname("http://foo.bar.baz")
                .clientId("foo")
                .clientSecret("bar")
                .build());
    
        }
    }
    
    resources:
      name:
        type: authentik:StageAuthenticatorDuo
        properties:
          apiHostname: http://foo.bar.baz
          clientId: foo
          clientSecret: bar
    

    Create StageAuthenticatorDuo Resource

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

    Constructor syntax

    new StageAuthenticatorDuo(name: string, args: StageAuthenticatorDuoArgs, opts?: CustomResourceOptions);
    @overload
    def StageAuthenticatorDuo(resource_name: str,
                              args: StageAuthenticatorDuoArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def StageAuthenticatorDuo(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              api_hostname: Optional[str] = None,
                              client_id: Optional[str] = None,
                              client_secret: Optional[str] = None,
                              admin_integration_key: Optional[str] = None,
                              admin_secret_key: Optional[str] = None,
                              configure_flow: Optional[str] = None,
                              friendly_name: Optional[str] = None,
                              name: Optional[str] = None,
                              stage_authenticator_duo_id: Optional[str] = None)
    func NewStageAuthenticatorDuo(ctx *Context, name string, args StageAuthenticatorDuoArgs, opts ...ResourceOption) (*StageAuthenticatorDuo, error)
    public StageAuthenticatorDuo(string name, StageAuthenticatorDuoArgs args, CustomResourceOptions? opts = null)
    public StageAuthenticatorDuo(String name, StageAuthenticatorDuoArgs args)
    public StageAuthenticatorDuo(String name, StageAuthenticatorDuoArgs args, CustomResourceOptions options)
    
    type: authentik:StageAuthenticatorDuo
    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 StageAuthenticatorDuoArgs
    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 StageAuthenticatorDuoArgs
    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 StageAuthenticatorDuoArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StageAuthenticatorDuoArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StageAuthenticatorDuoArgs
    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 stageAuthenticatorDuoResource = new Authentik.StageAuthenticatorDuo("stageAuthenticatorDuoResource", new()
    {
        ApiHostname = "string",
        ClientId = "string",
        ClientSecret = "string",
        AdminIntegrationKey = "string",
        AdminSecretKey = "string",
        ConfigureFlow = "string",
        FriendlyName = "string",
        Name = "string",
        StageAuthenticatorDuoId = "string",
    });
    
    example, err := authentik.NewStageAuthenticatorDuo(ctx, "stageAuthenticatorDuoResource", &authentik.StageAuthenticatorDuoArgs{
    	ApiHostname:             pulumi.String("string"),
    	ClientId:                pulumi.String("string"),
    	ClientSecret:            pulumi.String("string"),
    	AdminIntegrationKey:     pulumi.String("string"),
    	AdminSecretKey:          pulumi.String("string"),
    	ConfigureFlow:           pulumi.String("string"),
    	FriendlyName:            pulumi.String("string"),
    	Name:                    pulumi.String("string"),
    	StageAuthenticatorDuoId: pulumi.String("string"),
    })
    
    var stageAuthenticatorDuoResource = new StageAuthenticatorDuo("stageAuthenticatorDuoResource", StageAuthenticatorDuoArgs.builder()
        .apiHostname("string")
        .clientId("string")
        .clientSecret("string")
        .adminIntegrationKey("string")
        .adminSecretKey("string")
        .configureFlow("string")
        .friendlyName("string")
        .name("string")
        .stageAuthenticatorDuoId("string")
        .build());
    
    stage_authenticator_duo_resource = authentik.StageAuthenticatorDuo("stageAuthenticatorDuoResource",
        api_hostname="string",
        client_id="string",
        client_secret="string",
        admin_integration_key="string",
        admin_secret_key="string",
        configure_flow="string",
        friendly_name="string",
        name="string",
        stage_authenticator_duo_id="string")
    
    const stageAuthenticatorDuoResource = new authentik.StageAuthenticatorDuo("stageAuthenticatorDuoResource", {
        apiHostname: "string",
        clientId: "string",
        clientSecret: "string",
        adminIntegrationKey: "string",
        adminSecretKey: "string",
        configureFlow: "string",
        friendlyName: "string",
        name: "string",
        stageAuthenticatorDuoId: "string",
    });
    
    type: authentik:StageAuthenticatorDuo
    properties:
        adminIntegrationKey: string
        adminSecretKey: string
        apiHostname: string
        clientId: string
        clientSecret: string
        configureFlow: string
        friendlyName: string
        name: string
        stageAuthenticatorDuoId: string
    

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

    ApiHostname string
    ClientId string
    ClientSecret string
    AdminIntegrationKey string
    AdminSecretKey string
    ConfigureFlow string
    FriendlyName string
    Name string
    StageAuthenticatorDuoId string
    The ID of this resource.
    ApiHostname string
    ClientId string
    ClientSecret string
    AdminIntegrationKey string
    AdminSecretKey string
    ConfigureFlow string
    FriendlyName string
    Name string
    StageAuthenticatorDuoId string
    The ID of this resource.
    apiHostname String
    clientId String
    clientSecret String
    adminIntegrationKey String
    adminSecretKey String
    configureFlow String
    friendlyName String
    name String
    stageAuthenticatorDuoId String
    The ID of this resource.
    apiHostname string
    clientId string
    clientSecret string
    adminIntegrationKey string
    adminSecretKey string
    configureFlow string
    friendlyName string
    name string
    stageAuthenticatorDuoId string
    The ID of this resource.
    apiHostname String
    clientId String
    clientSecret String
    adminIntegrationKey String
    adminSecretKey String
    configureFlow String
    friendlyName String
    name String
    stageAuthenticatorDuoId String
    The ID of this resource.

    Outputs

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

    Get an existing StageAuthenticatorDuo 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?: StageAuthenticatorDuoState, opts?: CustomResourceOptions): StageAuthenticatorDuo
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            admin_integration_key: Optional[str] = None,
            admin_secret_key: Optional[str] = None,
            api_hostname: Optional[str] = None,
            client_id: Optional[str] = None,
            client_secret: Optional[str] = None,
            configure_flow: Optional[str] = None,
            friendly_name: Optional[str] = None,
            name: Optional[str] = None,
            stage_authenticator_duo_id: Optional[str] = None) -> StageAuthenticatorDuo
    func GetStageAuthenticatorDuo(ctx *Context, name string, id IDInput, state *StageAuthenticatorDuoState, opts ...ResourceOption) (*StageAuthenticatorDuo, error)
    public static StageAuthenticatorDuo Get(string name, Input<string> id, StageAuthenticatorDuoState? state, CustomResourceOptions? opts = null)
    public static StageAuthenticatorDuo get(String name, Output<String> id, StageAuthenticatorDuoState state, CustomResourceOptions options)
    resources:  _:    type: authentik:StageAuthenticatorDuo    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:
    AdminIntegrationKey string
    AdminSecretKey string
    ApiHostname string
    ClientId string
    ClientSecret string
    ConfigureFlow string
    FriendlyName string
    Name string
    StageAuthenticatorDuoId string
    The ID of this resource.
    AdminIntegrationKey string
    AdminSecretKey string
    ApiHostname string
    ClientId string
    ClientSecret string
    ConfigureFlow string
    FriendlyName string
    Name string
    StageAuthenticatorDuoId string
    The ID of this resource.
    adminIntegrationKey String
    adminSecretKey String
    apiHostname String
    clientId String
    clientSecret String
    configureFlow String
    friendlyName String
    name String
    stageAuthenticatorDuoId String
    The ID of this resource.
    adminIntegrationKey string
    adminSecretKey string
    apiHostname string
    clientId string
    clientSecret string
    configureFlow string
    friendlyName string
    name string
    stageAuthenticatorDuoId string
    The ID of this resource.
    adminIntegrationKey String
    adminSecretKey String
    apiHostname String
    clientId String
    clientSecret String
    configureFlow String
    friendlyName String
    name String
    stageAuthenticatorDuoId 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