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

authentik.StageAuthenticatorValidate

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.StageAuthenticatorValidate("name", {
        deviceClasses: ["static"],
        notConfiguredAction: "skip",
    });
    
    import pulumi
    import pulumi_authentik as authentik
    
    name = authentik.StageAuthenticatorValidate("name",
        device_classes=["static"],
        not_configured_action="skip")
    
    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.NewStageAuthenticatorValidate(ctx, "name", &authentik.StageAuthenticatorValidateArgs{
    			DeviceClasses: pulumi.StringArray{
    				pulumi.String("static"),
    			},
    			NotConfiguredAction: pulumi.String("skip"),
    		})
    		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.StageAuthenticatorValidate("name", new()
        {
            DeviceClasses = new[]
            {
                "static",
            },
            NotConfiguredAction = "skip",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.authentik.StageAuthenticatorValidate;
    import com.pulumi.authentik.StageAuthenticatorValidateArgs;
    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 StageAuthenticatorValidate("name", StageAuthenticatorValidateArgs.builder()
                .deviceClasses("static")
                .notConfiguredAction("skip")
                .build());
    
        }
    }
    
    resources:
      name:
        type: authentik:StageAuthenticatorValidate
        properties:
          deviceClasses:
            - static
          notConfiguredAction: skip
    

    Create StageAuthenticatorValidate Resource

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

    Constructor syntax

    new StageAuthenticatorValidate(name: string, args: StageAuthenticatorValidateArgs, opts?: CustomResourceOptions);
    @overload
    def StageAuthenticatorValidate(resource_name: str,
                                   args: StageAuthenticatorValidateArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def StageAuthenticatorValidate(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   not_configured_action: Optional[str] = None,
                                   configuration_stages: Optional[Sequence[str]] = None,
                                   device_classes: Optional[Sequence[str]] = None,
                                   last_auth_threshold: Optional[str] = None,
                                   name: Optional[str] = None,
                                   stage_authenticator_validate_id: Optional[str] = None,
                                   webauthn_allowed_device_types: Optional[Sequence[str]] = None,
                                   webauthn_user_verification: Optional[str] = None)
    func NewStageAuthenticatorValidate(ctx *Context, name string, args StageAuthenticatorValidateArgs, opts ...ResourceOption) (*StageAuthenticatorValidate, error)
    public StageAuthenticatorValidate(string name, StageAuthenticatorValidateArgs args, CustomResourceOptions? opts = null)
    public StageAuthenticatorValidate(String name, StageAuthenticatorValidateArgs args)
    public StageAuthenticatorValidate(String name, StageAuthenticatorValidateArgs args, CustomResourceOptions options)
    
    type: authentik:StageAuthenticatorValidate
    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 StageAuthenticatorValidateArgs
    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 StageAuthenticatorValidateArgs
    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 StageAuthenticatorValidateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StageAuthenticatorValidateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StageAuthenticatorValidateArgs
    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 stageAuthenticatorValidateResource = new Authentik.StageAuthenticatorValidate("stageAuthenticatorValidateResource", new()
    {
        NotConfiguredAction = "string",
        ConfigurationStages = new[]
        {
            "string",
        },
        DeviceClasses = new[]
        {
            "string",
        },
        LastAuthThreshold = "string",
        Name = "string",
        StageAuthenticatorValidateId = "string",
        WebauthnAllowedDeviceTypes = new[]
        {
            "string",
        },
        WebauthnUserVerification = "string",
    });
    
    example, err := authentik.NewStageAuthenticatorValidate(ctx, "stageAuthenticatorValidateResource", &authentik.StageAuthenticatorValidateArgs{
    	NotConfiguredAction: pulumi.String("string"),
    	ConfigurationStages: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DeviceClasses: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	LastAuthThreshold:            pulumi.String("string"),
    	Name:                         pulumi.String("string"),
    	StageAuthenticatorValidateId: pulumi.String("string"),
    	WebauthnAllowedDeviceTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	WebauthnUserVerification: pulumi.String("string"),
    })
    
    var stageAuthenticatorValidateResource = new StageAuthenticatorValidate("stageAuthenticatorValidateResource", StageAuthenticatorValidateArgs.builder()
        .notConfiguredAction("string")
        .configurationStages("string")
        .deviceClasses("string")
        .lastAuthThreshold("string")
        .name("string")
        .stageAuthenticatorValidateId("string")
        .webauthnAllowedDeviceTypes("string")
        .webauthnUserVerification("string")
        .build());
    
    stage_authenticator_validate_resource = authentik.StageAuthenticatorValidate("stageAuthenticatorValidateResource",
        not_configured_action="string",
        configuration_stages=["string"],
        device_classes=["string"],
        last_auth_threshold="string",
        name="string",
        stage_authenticator_validate_id="string",
        webauthn_allowed_device_types=["string"],
        webauthn_user_verification="string")
    
    const stageAuthenticatorValidateResource = new authentik.StageAuthenticatorValidate("stageAuthenticatorValidateResource", {
        notConfiguredAction: "string",
        configurationStages: ["string"],
        deviceClasses: ["string"],
        lastAuthThreshold: "string",
        name: "string",
        stageAuthenticatorValidateId: "string",
        webauthnAllowedDeviceTypes: ["string"],
        webauthnUserVerification: "string",
    });
    
    type: authentik:StageAuthenticatorValidate
    properties:
        configurationStages:
            - string
        deviceClasses:
            - string
        lastAuthThreshold: string
        name: string
        notConfiguredAction: string
        stageAuthenticatorValidateId: string
        webauthnAllowedDeviceTypes:
            - string
        webauthnUserVerification: string
    

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

    NotConfiguredAction string
    Allowed values: - skip - deny - configure
    ConfigurationStages List<string>
    DeviceClasses List<string>
    LastAuthThreshold string
    Defaults to seconds=0.
    Name string
    StageAuthenticatorValidateId string
    WebauthnAllowedDeviceTypes List<string>
    WebauthnUserVerification string
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    NotConfiguredAction string
    Allowed values: - skip - deny - configure
    ConfigurationStages []string
    DeviceClasses []string
    LastAuthThreshold string
    Defaults to seconds=0.
    Name string
    StageAuthenticatorValidateId string
    WebauthnAllowedDeviceTypes []string
    WebauthnUserVerification string
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    notConfiguredAction String
    Allowed values: - skip - deny - configure
    configurationStages List<String>
    deviceClasses List<String>
    lastAuthThreshold String
    Defaults to seconds=0.
    name String
    stageAuthenticatorValidateId String
    webauthnAllowedDeviceTypes List<String>
    webauthnUserVerification String
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    notConfiguredAction string
    Allowed values: - skip - deny - configure
    configurationStages string[]
    deviceClasses string[]
    lastAuthThreshold string
    Defaults to seconds=0.
    name string
    stageAuthenticatorValidateId string
    webauthnAllowedDeviceTypes string[]
    webauthnUserVerification string
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    not_configured_action str
    Allowed values: - skip - deny - configure
    configuration_stages Sequence[str]
    device_classes Sequence[str]
    last_auth_threshold str
    Defaults to seconds=0.
    name str
    stage_authenticator_validate_id str
    webauthn_allowed_device_types Sequence[str]
    webauthn_user_verification str
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    notConfiguredAction String
    Allowed values: - skip - deny - configure
    configurationStages List<String>
    deviceClasses List<String>
    lastAuthThreshold String
    Defaults to seconds=0.
    name String
    stageAuthenticatorValidateId String
    webauthnAllowedDeviceTypes List<String>
    webauthnUserVerification String
    Allowed values: - required - preferred - discouraged Defaults to preferred.

    Outputs

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

    Get an existing StageAuthenticatorValidate 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?: StageAuthenticatorValidateState, opts?: CustomResourceOptions): StageAuthenticatorValidate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration_stages: Optional[Sequence[str]] = None,
            device_classes: Optional[Sequence[str]] = None,
            last_auth_threshold: Optional[str] = None,
            name: Optional[str] = None,
            not_configured_action: Optional[str] = None,
            stage_authenticator_validate_id: Optional[str] = None,
            webauthn_allowed_device_types: Optional[Sequence[str]] = None,
            webauthn_user_verification: Optional[str] = None) -> StageAuthenticatorValidate
    func GetStageAuthenticatorValidate(ctx *Context, name string, id IDInput, state *StageAuthenticatorValidateState, opts ...ResourceOption) (*StageAuthenticatorValidate, error)
    public static StageAuthenticatorValidate Get(string name, Input<string> id, StageAuthenticatorValidateState? state, CustomResourceOptions? opts = null)
    public static StageAuthenticatorValidate get(String name, Output<String> id, StageAuthenticatorValidateState state, CustomResourceOptions options)
    resources:  _:    type: authentik:StageAuthenticatorValidate    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:
    ConfigurationStages List<string>
    DeviceClasses List<string>
    LastAuthThreshold string
    Defaults to seconds=0.
    Name string
    NotConfiguredAction string
    Allowed values: - skip - deny - configure
    StageAuthenticatorValidateId string
    WebauthnAllowedDeviceTypes List<string>
    WebauthnUserVerification string
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    ConfigurationStages []string
    DeviceClasses []string
    LastAuthThreshold string
    Defaults to seconds=0.
    Name string
    NotConfiguredAction string
    Allowed values: - skip - deny - configure
    StageAuthenticatorValidateId string
    WebauthnAllowedDeviceTypes []string
    WebauthnUserVerification string
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    configurationStages List<String>
    deviceClasses List<String>
    lastAuthThreshold String
    Defaults to seconds=0.
    name String
    notConfiguredAction String
    Allowed values: - skip - deny - configure
    stageAuthenticatorValidateId String
    webauthnAllowedDeviceTypes List<String>
    webauthnUserVerification String
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    configurationStages string[]
    deviceClasses string[]
    lastAuthThreshold string
    Defaults to seconds=0.
    name string
    notConfiguredAction string
    Allowed values: - skip - deny - configure
    stageAuthenticatorValidateId string
    webauthnAllowedDeviceTypes string[]
    webauthnUserVerification string
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    configuration_stages Sequence[str]
    device_classes Sequence[str]
    last_auth_threshold str
    Defaults to seconds=0.
    name str
    not_configured_action str
    Allowed values: - skip - deny - configure
    stage_authenticator_validate_id str
    webauthn_allowed_device_types Sequence[str]
    webauthn_user_verification str
    Allowed values: - required - preferred - discouraged Defaults to preferred.
    configurationStages List<String>
    deviceClasses List<String>
    lastAuthThreshold String
    Defaults to seconds=0.
    name String
    notConfiguredAction String
    Allowed values: - skip - deny - configure
    stageAuthenticatorValidateId String
    webauthnAllowedDeviceTypes List<String>
    webauthnUserVerification String
    Allowed values: - required - preferred - discouraged Defaults to preferred.

    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