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:
- Not
Configured stringAction - Allowed values: -
skip
-deny
-configure
- Configuration
Stages List<string> - Device
Classes List<string> - Last
Auth stringThreshold - Defaults to
seconds=0
. - Name string
- Stage
Authenticator stringValidate Id - Webauthn
Allowed List<string>Device Types - Webauthn
User stringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults topreferred
.
- Not
Configured stringAction - Allowed values: -
skip
-deny
-configure
- Configuration
Stages []string - Device
Classes []string - Last
Auth stringThreshold - Defaults to
seconds=0
. - Name string
- Stage
Authenticator stringValidate Id - Webauthn
Allowed []stringDevice Types - Webauthn
User stringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults topreferred
.
- not
Configured StringAction - Allowed values: -
skip
-deny
-configure
- configuration
Stages List<String> - device
Classes List<String> - last
Auth StringThreshold - Defaults to
seconds=0
. - name String
- stage
Authenticator StringValidate Id - webauthn
Allowed List<String>Device Types - webauthn
User StringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults topreferred
.
- not
Configured stringAction - Allowed values: -
skip
-deny
-configure
- configuration
Stages string[] - device
Classes string[] - last
Auth stringThreshold - Defaults to
seconds=0
. - name string
- stage
Authenticator stringValidate Id - webauthn
Allowed string[]Device Types - webauthn
User stringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults 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
-discouraged
Defaults topreferred
.
- not
Configured StringAction - Allowed values: -
skip
-deny
-configure
- configuration
Stages List<String> - device
Classes List<String> - last
Auth StringThreshold - Defaults to
seconds=0
. - name String
- stage
Authenticator StringValidate Id - webauthn
Allowed List<String>Device Types - webauthn
User StringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults 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) -> 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.
- Configuration
Stages List<string> - Device
Classes List<string> - Last
Auth stringThreshold - Defaults to
seconds=0
. - Name string
- Not
Configured stringAction - Allowed values: -
skip
-deny
-configure
- Stage
Authenticator stringValidate Id - Webauthn
Allowed List<string>Device Types - Webauthn
User stringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults topreferred
.
- Configuration
Stages []string - Device
Classes []string - Last
Auth stringThreshold - Defaults to
seconds=0
. - Name string
- Not
Configured stringAction - Allowed values: -
skip
-deny
-configure
- Stage
Authenticator stringValidate Id - Webauthn
Allowed []stringDevice Types - Webauthn
User stringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults topreferred
.
- configuration
Stages List<String> - device
Classes List<String> - last
Auth StringThreshold - Defaults to
seconds=0
. - name String
- not
Configured StringAction - Allowed values: -
skip
-deny
-configure
- stage
Authenticator StringValidate Id - webauthn
Allowed List<String>Device Types - webauthn
User StringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults topreferred
.
- configuration
Stages string[] - device
Classes string[] - last
Auth stringThreshold - Defaults to
seconds=0
. - name string
- not
Configured stringAction - Allowed values: -
skip
-deny
-configure
- stage
Authenticator stringValidate Id - webauthn
Allowed string[]Device Types - webauthn
User stringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults 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
-discouraged
Defaults topreferred
.
- configuration
Stages List<String> - device
Classes List<String> - last
Auth StringThreshold - Defaults to
seconds=0
. - name String
- not
Configured StringAction - Allowed values: -
skip
-deny
-configure
- stage
Authenticator StringValidate Id - webauthn
Allowed List<String>Device Types - webauthn
User StringVerification - Allowed values: -
required
-preferred
-discouraged
Defaults topreferred
.
Package Details
- Repository
- authentik goauthentik/terraform-provider-authentik
- License
- Notes
- This Pulumi package is based on the
authentik
Terraform Provider.