authentik.StageAuthenticatorValidate
Explore with Pulumi AI
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:
- NotConfigured stringAction 
- Allowed values: - skip-deny-configure
- ConfigurationStages List<string>
- DeviceClasses List<string>
- LastAuth stringThreshold 
- Defaults to seconds=0.
- Name string
- StageAuthenticator stringValidate Id 
- WebauthnAllowed List<string>Device Types 
- WebauthnUser stringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- NotConfigured stringAction 
- Allowed values: - skip-deny-configure
- ConfigurationStages []string
- DeviceClasses []string
- LastAuth stringThreshold 
- Defaults to seconds=0.
- Name string
- StageAuthenticator stringValidate Id 
- WebauthnAllowed []stringDevice Types 
- WebauthnUser stringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- notConfigured StringAction 
- Allowed values: - skip-deny-configure
- configurationStages List<String>
- deviceClasses List<String>
- lastAuth StringThreshold 
- Defaults to seconds=0.
- name String
- stageAuthenticator StringValidate Id 
- webauthnAllowed List<String>Device Types 
- webauthnUser StringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- notConfigured stringAction 
- Allowed values: - skip-deny-configure
- configurationStages string[]
- deviceClasses string[]
- lastAuth stringThreshold 
- Defaults to seconds=0.
- name string
- stageAuthenticator stringValidate Id 
- webauthnAllowed string[]Device Types 
- webauthnUser stringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- not_configured_ straction 
- Allowed values: - skip-deny-configure
- configuration_stages Sequence[str]
- device_classes Sequence[str]
- last_auth_ strthreshold 
- Defaults to seconds=0.
- name str
- stage_authenticator_ strvalidate_ id 
- webauthn_allowed_ Sequence[str]device_ types 
- webauthn_user_ strverification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- notConfigured StringAction 
- Allowed values: - skip-deny-configure
- configurationStages List<String>
- deviceClasses List<String>
- lastAuth StringThreshold 
- Defaults to seconds=0.
- name String
- stageAuthenticator StringValidate Id 
- webauthnAllowed List<String>Device Types 
- webauthnUser StringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
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) -> StageAuthenticatorValidatefunc 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.
- ConfigurationStages List<string>
- DeviceClasses List<string>
- LastAuth stringThreshold 
- Defaults to seconds=0.
- Name string
- NotConfigured stringAction 
- Allowed values: - skip-deny-configure
- StageAuthenticator stringValidate Id 
- WebauthnAllowed List<string>Device Types 
- WebauthnUser stringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- ConfigurationStages []string
- DeviceClasses []string
- LastAuth stringThreshold 
- Defaults to seconds=0.
- Name string
- NotConfigured stringAction 
- Allowed values: - skip-deny-configure
- StageAuthenticator stringValidate Id 
- WebauthnAllowed []stringDevice Types 
- WebauthnUser stringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- configurationStages List<String>
- deviceClasses List<String>
- lastAuth StringThreshold 
- Defaults to seconds=0.
- name String
- notConfigured StringAction 
- Allowed values: - skip-deny-configure
- stageAuthenticator StringValidate Id 
- webauthnAllowed List<String>Device Types 
- webauthnUser StringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- configurationStages string[]
- deviceClasses string[]
- lastAuth stringThreshold 
- Defaults to seconds=0.
- name string
- notConfigured stringAction 
- Allowed values: - skip-deny-configure
- stageAuthenticator stringValidate Id 
- webauthnAllowed string[]Device Types 
- webauthnUser stringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- configuration_stages Sequence[str]
- device_classes Sequence[str]
- last_auth_ strthreshold 
- Defaults to seconds=0.
- name str
- not_configured_ straction 
- Allowed values: - skip-deny-configure
- stage_authenticator_ strvalidate_ id 
- webauthn_allowed_ Sequence[str]device_ types 
- webauthn_user_ strverification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
- configurationStages List<String>
- deviceClasses List<String>
- lastAuth StringThreshold 
- Defaults to seconds=0.
- name String
- notConfigured StringAction 
- Allowed values: - skip-deny-configure
- stageAuthenticator StringValidate Id 
- webauthnAllowed List<String>Device Types 
- webauthnUser StringVerification 
- Allowed values: - required-preferred-discouragedDefaults topreferred.
Package Details
- Repository
- authentik goauthentik/terraform-provider-authentik
- License
- Notes
- This Pulumi package is based on the authentikTerraform Provider.