published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Multi-Factor Authentication works by requiring additional factors during the login process to prevent unauthorized access. With this resource you can configure some options available for MFA.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Auth0 = Pulumi.Auth0;
return await Deployment.RunAsync(() =>
{
var myGuardian = new Auth0.Guardian("myGuardian", new()
{
Duo = new Auth0.Inputs.GuardianDuoArgs
{
Enabled = true,
Hostname = "api-hostname",
IntegrationKey = "someKey",
SecretKey = "someSecret",
},
Email = true,
Otp = true,
Phone = new Auth0.Inputs.GuardianPhoneArgs
{
Enabled = true,
MessageTypes = new[]
{
"sms",
"voice",
},
Options = new Auth0.Inputs.GuardianPhoneOptionsArgs
{
EnrollmentMessage = "{{code}} is your verification code for {{tenant.friendly_name}}. Please enter this code to verify your enrollment.",
VerificationMessage = "{{code}} is your verification code for {{tenant.friendly_name}}.",
},
Provider = "auth0",
},
Policy = "all-applications",
Push = new Auth0.Inputs.GuardianPushArgs
{
AmazonSns = new Auth0.Inputs.GuardianPushAmazonSnsArgs
{
AwsAccessKeyId = "test1",
AwsRegion = "us-west-1",
AwsSecretAccessKey = "secretKey",
SnsApnsPlatformApplicationArn = "test_arn",
SnsGcmPlatformApplicationArn = "test_arn",
},
CustomApp = new Auth0.Inputs.GuardianPushCustomAppArgs
{
AppName = "CustomApp",
AppleAppLink = "https://itunes.apple.com/us/app/my-app/id123121",
GoogleAppLink = "https://play.google.com/store/apps/details?id=com.my.app",
},
Enabled = true,
Provider = "sns",
},
RecoveryCode = true,
WebauthnPlatform = new Auth0.Inputs.GuardianWebauthnPlatformArgs
{
Enabled = true,
},
WebauthnRoaming = new Auth0.Inputs.GuardianWebauthnRoamingArgs
{
Enabled = true,
UserVerification = "required",
},
});
});
package main
import (
"github.com/pulumi/pulumi-auth0/sdk/v2/go/auth0"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := auth0.NewGuardian(ctx, "myGuardian", &auth0.GuardianArgs{
Duo: &auth0.GuardianDuoArgs{
Enabled: pulumi.Bool(true),
Hostname: pulumi.String("api-hostname"),
IntegrationKey: pulumi.String("someKey"),
SecretKey: pulumi.String("someSecret"),
},
Email: pulumi.Bool(true),
Otp: pulumi.Bool(true),
Phone: &auth0.GuardianPhoneArgs{
Enabled: pulumi.Bool(true),
MessageTypes: pulumi.StringArray{
pulumi.String("sms"),
pulumi.String("voice"),
},
Options: &auth0.GuardianPhoneOptionsArgs{
EnrollmentMessage: pulumi.String("{{code}} is your verification code for {{tenant.friendly_name}}. Please enter this code to verify your enrollment."),
VerificationMessage: pulumi.String("{{code}} is your verification code for {{tenant.friendly_name}}."),
},
Provider: pulumi.String("auth0"),
},
Policy: pulumi.String("all-applications"),
Push: &auth0.GuardianPushArgs{
AmazonSns: &auth0.GuardianPushAmazonSnsArgs{
AwsAccessKeyId: pulumi.String("test1"),
AwsRegion: pulumi.String("us-west-1"),
AwsSecretAccessKey: pulumi.String("secretKey"),
SnsApnsPlatformApplicationArn: pulumi.String("test_arn"),
SnsGcmPlatformApplicationArn: pulumi.String("test_arn"),
},
CustomApp: &auth0.GuardianPushCustomAppArgs{
AppName: pulumi.String("CustomApp"),
AppleAppLink: pulumi.String("https://itunes.apple.com/us/app/my-app/id123121"),
GoogleAppLink: pulumi.String("https://play.google.com/store/apps/details?id=com.my.app"),
},
Enabled: pulumi.Bool(true),
Provider: pulumi.String("sns"),
},
RecoveryCode: pulumi.Bool(true),
WebauthnPlatform: &auth0.GuardianWebauthnPlatformArgs{
Enabled: pulumi.Bool(true),
},
WebauthnRoaming: &auth0.GuardianWebauthnRoamingArgs{
Enabled: pulumi.Bool(true),
UserVerification: pulumi.String("required"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.auth0.Guardian;
import com.pulumi.auth0.GuardianArgs;
import com.pulumi.auth0.inputs.GuardianDuoArgs;
import com.pulumi.auth0.inputs.GuardianPhoneArgs;
import com.pulumi.auth0.inputs.GuardianPhoneOptionsArgs;
import com.pulumi.auth0.inputs.GuardianPushArgs;
import com.pulumi.auth0.inputs.GuardianPushAmazonSnsArgs;
import com.pulumi.auth0.inputs.GuardianPushCustomAppArgs;
import com.pulumi.auth0.inputs.GuardianWebauthnPlatformArgs;
import com.pulumi.auth0.inputs.GuardianWebauthnRoamingArgs;
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 myGuardian = new Guardian("myGuardian", GuardianArgs.builder()
.duo(GuardianDuoArgs.builder()
.enabled(true)
.hostname("api-hostname")
.integrationKey("someKey")
.secretKey("someSecret")
.build())
.email(true)
.otp(true)
.phone(GuardianPhoneArgs.builder()
.enabled(true)
.messageTypes(
"sms",
"voice")
.options(GuardianPhoneOptionsArgs.builder()
.enrollmentMessage("{{code}} is your verification code for {{tenant.friendly_name}}. Please enter this code to verify your enrollment.")
.verificationMessage("{{code}} is your verification code for {{tenant.friendly_name}}.")
.build())
.provider("auth0")
.build())
.policy("all-applications")
.push(GuardianPushArgs.builder()
.amazonSns(GuardianPushAmazonSnsArgs.builder()
.awsAccessKeyId("test1")
.awsRegion("us-west-1")
.awsSecretAccessKey("secretKey")
.snsApnsPlatformApplicationArn("test_arn")
.snsGcmPlatformApplicationArn("test_arn")
.build())
.customApp(GuardianPushCustomAppArgs.builder()
.appName("CustomApp")
.appleAppLink("https://itunes.apple.com/us/app/my-app/id123121")
.googleAppLink("https://play.google.com/store/apps/details?id=com.my.app")
.build())
.enabled(true)
.provider("sns")
.build())
.recoveryCode(true)
.webauthnPlatform(GuardianWebauthnPlatformArgs.builder()
.enabled(true)
.build())
.webauthnRoaming(GuardianWebauthnRoamingArgs.builder()
.enabled(true)
.userVerification("required")
.build())
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
const myGuardian = new auth0.Guardian("myGuardian", {
duo: {
enabled: true,
hostname: "api-hostname",
integrationKey: "someKey",
secretKey: "someSecret",
},
email: true,
otp: true,
phone: {
enabled: true,
messageTypes: [
"sms",
"voice",
],
options: {
enrollmentMessage: "{{code}} is your verification code for {{tenant.friendly_name}}. Please enter this code to verify your enrollment.",
verificationMessage: "{{code}} is your verification code for {{tenant.friendly_name}}.",
},
provider: "auth0",
},
policy: "all-applications",
push: {
amazonSns: {
awsAccessKeyId: "test1",
awsRegion: "us-west-1",
awsSecretAccessKey: "secretKey",
snsApnsPlatformApplicationArn: "test_arn",
snsGcmPlatformApplicationArn: "test_arn",
},
customApp: {
appName: "CustomApp",
appleAppLink: "https://itunes.apple.com/us/app/my-app/id123121",
googleAppLink: "https://play.google.com/store/apps/details?id=com.my.app",
},
enabled: true,
provider: "sns",
},
recoveryCode: true,
webauthnPlatform: {
enabled: true,
},
webauthnRoaming: {
enabled: true,
userVerification: "required",
},
});
import pulumi
import pulumi_auth0 as auth0
my_guardian = auth0.Guardian("myGuardian",
duo=auth0.GuardianDuoArgs(
enabled=True,
hostname="api-hostname",
integration_key="someKey",
secret_key="someSecret",
),
email=True,
otp=True,
phone=auth0.GuardianPhoneArgs(
enabled=True,
message_types=[
"sms",
"voice",
],
options=auth0.GuardianPhoneOptionsArgs(
enrollment_message="{{code}} is your verification code for {{tenant.friendly_name}}. Please enter this code to verify your enrollment.",
verification_message="{{code}} is your verification code for {{tenant.friendly_name}}.",
),
provider="auth0",
),
policy="all-applications",
push=auth0.GuardianPushArgs(
amazon_sns=auth0.GuardianPushAmazonSnsArgs(
aws_access_key_id="test1",
aws_region="us-west-1",
aws_secret_access_key="secretKey",
sns_apns_platform_application_arn="test_arn",
sns_gcm_platform_application_arn="test_arn",
),
custom_app=auth0.GuardianPushCustomAppArgs(
app_name="CustomApp",
apple_app_link="https://itunes.apple.com/us/app/my-app/id123121",
google_app_link="https://play.google.com/store/apps/details?id=com.my.app",
),
enabled=True,
provider="sns",
),
recovery_code=True,
webauthn_platform=auth0.GuardianWebauthnPlatformArgs(
enabled=True,
),
webauthn_roaming=auth0.GuardianWebauthnRoamingArgs(
enabled=True,
user_verification="required",
))
resources:
myGuardian:
type: auth0:Guardian
properties:
duo:
enabled: true
hostname: api-hostname
integrationKey: someKey
secretKey: someSecret
email: true
otp: true
phone:
enabled: true
messageTypes:
- sms
- voice
options:
enrollmentMessage: '{{code}} is your verification code for {{tenant.friendly_name}}. Please enter this code to verify your enrollment.'
verificationMessage: '{{code}} is your verification code for {{tenant.friendly_name}}.'
provider: auth0
policy: all-applications
push:
amazonSns:
awsAccessKeyId: test1
awsRegion: us-west-1
awsSecretAccessKey: secretKey
snsApnsPlatformApplicationArn: test_arn
snsGcmPlatformApplicationArn: test_arn
customApp:
appName: CustomApp
appleAppLink: https://itunes.apple.com/us/app/my-app/id123121
googleAppLink: https://play.google.com/store/apps/details?id=com.my.app
enabled: true
provider: sns
recoveryCode: true
webauthnPlatform:
enabled: true
webauthnRoaming:
enabled: true
userVerification: required
Create Guardian Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Guardian(name: string, args: GuardianArgs, opts?: CustomResourceOptions);@overload
def Guardian(resource_name: str,
args: GuardianArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Guardian(resource_name: str,
opts: Optional[ResourceOptions] = None,
policy: Optional[str] = None,
duo: Optional[GuardianDuoArgs] = None,
email: Optional[bool] = None,
otp: Optional[bool] = None,
phone: Optional[GuardianPhoneArgs] = None,
push: Optional[GuardianPushArgs] = None,
recovery_code: Optional[bool] = None,
webauthn_platform: Optional[GuardianWebauthnPlatformArgs] = None,
webauthn_roaming: Optional[GuardianWebauthnRoamingArgs] = None)func NewGuardian(ctx *Context, name string, args GuardianArgs, opts ...ResourceOption) (*Guardian, error)public Guardian(string name, GuardianArgs args, CustomResourceOptions? opts = null)
public Guardian(String name, GuardianArgs args)
public Guardian(String name, GuardianArgs args, CustomResourceOptions options)
type: auth0:Guardian
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 GuardianArgs
- 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 GuardianArgs
- 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 GuardianArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GuardianArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GuardianArgs
- 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 guardianResource = new Auth0.Guardian("guardianResource", new()
{
Policy = "string",
Duo = new Auth0.Inputs.GuardianDuoArgs
{
Enabled = false,
Hostname = "string",
IntegrationKey = "string",
SecretKey = "string",
},
Email = false,
Otp = false,
Phone = new Auth0.Inputs.GuardianPhoneArgs
{
Enabled = false,
MessageTypes = new[]
{
"string",
},
Options = new Auth0.Inputs.GuardianPhoneOptionsArgs
{
AuthToken = "string",
EnrollmentMessage = "string",
From = "string",
MessagingServiceSid = "string",
Sid = "string",
VerificationMessage = "string",
},
Provider = "string",
},
Push = new Auth0.Inputs.GuardianPushArgs
{
Enabled = false,
AmazonSns = new Auth0.Inputs.GuardianPushAmazonSnsArgs
{
AwsAccessKeyId = "string",
AwsRegion = "string",
AwsSecretAccessKey = "string",
SnsApnsPlatformApplicationArn = "string",
SnsGcmPlatformApplicationArn = "string",
},
CustomApp = new Auth0.Inputs.GuardianPushCustomAppArgs
{
AppName = "string",
AppleAppLink = "string",
GoogleAppLink = "string",
},
DirectApns = new Auth0.Inputs.GuardianPushDirectApnsArgs
{
BundleId = "string",
P12 = "string",
Sandbox = false,
Enabled = false,
},
DirectFcm = new Auth0.Inputs.GuardianPushDirectFcmArgs
{
ServerKey = "string",
},
Provider = "string",
},
RecoveryCode = false,
WebauthnPlatform = new Auth0.Inputs.GuardianWebauthnPlatformArgs
{
Enabled = false,
OverrideRelyingParty = false,
RelyingPartyIdentifier = "string",
},
WebauthnRoaming = new Auth0.Inputs.GuardianWebauthnRoamingArgs
{
Enabled = false,
OverrideRelyingParty = false,
RelyingPartyIdentifier = "string",
UserVerification = "string",
},
});
example, err := auth0.NewGuardian(ctx, "guardianResource", &auth0.GuardianArgs{
Policy: pulumi.String("string"),
Duo: &auth0.GuardianDuoArgs{
Enabled: pulumi.Bool(false),
Hostname: pulumi.String("string"),
IntegrationKey: pulumi.String("string"),
SecretKey: pulumi.String("string"),
},
Email: pulumi.Bool(false),
Otp: pulumi.Bool(false),
Phone: &auth0.GuardianPhoneArgs{
Enabled: pulumi.Bool(false),
MessageTypes: pulumi.StringArray{
pulumi.String("string"),
},
Options: &auth0.GuardianPhoneOptionsArgs{
AuthToken: pulumi.String("string"),
EnrollmentMessage: pulumi.String("string"),
From: pulumi.String("string"),
MessagingServiceSid: pulumi.String("string"),
Sid: pulumi.String("string"),
VerificationMessage: pulumi.String("string"),
},
Provider: pulumi.String("string"),
},
Push: &auth0.GuardianPushArgs{
Enabled: pulumi.Bool(false),
AmazonSns: &auth0.GuardianPushAmazonSnsArgs{
AwsAccessKeyId: pulumi.String("string"),
AwsRegion: pulumi.String("string"),
AwsSecretAccessKey: pulumi.String("string"),
SnsApnsPlatformApplicationArn: pulumi.String("string"),
SnsGcmPlatformApplicationArn: pulumi.String("string"),
},
CustomApp: &auth0.GuardianPushCustomAppArgs{
AppName: pulumi.String("string"),
AppleAppLink: pulumi.String("string"),
GoogleAppLink: pulumi.String("string"),
},
DirectApns: &auth0.GuardianPushDirectApnsArgs{
BundleId: pulumi.String("string"),
P12: pulumi.String("string"),
Sandbox: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
},
DirectFcm: &auth0.GuardianPushDirectFcmArgs{
ServerKey: pulumi.String("string"),
},
Provider: pulumi.String("string"),
},
RecoveryCode: pulumi.Bool(false),
WebauthnPlatform: &auth0.GuardianWebauthnPlatformArgs{
Enabled: pulumi.Bool(false),
OverrideRelyingParty: pulumi.Bool(false),
RelyingPartyIdentifier: pulumi.String("string"),
},
WebauthnRoaming: &auth0.GuardianWebauthnRoamingArgs{
Enabled: pulumi.Bool(false),
OverrideRelyingParty: pulumi.Bool(false),
RelyingPartyIdentifier: pulumi.String("string"),
UserVerification: pulumi.String("string"),
},
})
var guardianResource = new Guardian("guardianResource", GuardianArgs.builder()
.policy("string")
.duo(GuardianDuoArgs.builder()
.enabled(false)
.hostname("string")
.integrationKey("string")
.secretKey("string")
.build())
.email(false)
.otp(false)
.phone(GuardianPhoneArgs.builder()
.enabled(false)
.messageTypes("string")
.options(GuardianPhoneOptionsArgs.builder()
.authToken("string")
.enrollmentMessage("string")
.from("string")
.messagingServiceSid("string")
.sid("string")
.verificationMessage("string")
.build())
.provider("string")
.build())
.push(GuardianPushArgs.builder()
.enabled(false)
.amazonSns(GuardianPushAmazonSnsArgs.builder()
.awsAccessKeyId("string")
.awsRegion("string")
.awsSecretAccessKey("string")
.snsApnsPlatformApplicationArn("string")
.snsGcmPlatformApplicationArn("string")
.build())
.customApp(GuardianPushCustomAppArgs.builder()
.appName("string")
.appleAppLink("string")
.googleAppLink("string")
.build())
.directApns(GuardianPushDirectApnsArgs.builder()
.bundleId("string")
.p12("string")
.sandbox(false)
.enabled(false)
.build())
.directFcm(GuardianPushDirectFcmArgs.builder()
.serverKey("string")
.build())
.provider("string")
.build())
.recoveryCode(false)
.webauthnPlatform(GuardianWebauthnPlatformArgs.builder()
.enabled(false)
.overrideRelyingParty(false)
.relyingPartyIdentifier("string")
.build())
.webauthnRoaming(GuardianWebauthnRoamingArgs.builder()
.enabled(false)
.overrideRelyingParty(false)
.relyingPartyIdentifier("string")
.userVerification("string")
.build())
.build());
guardian_resource = auth0.Guardian("guardianResource",
policy="string",
duo={
"enabled": False,
"hostname": "string",
"integration_key": "string",
"secret_key": "string",
},
email=False,
otp=False,
phone={
"enabled": False,
"message_types": ["string"],
"options": {
"auth_token": "string",
"enrollment_message": "string",
"from_": "string",
"messaging_service_sid": "string",
"sid": "string",
"verification_message": "string",
},
"provider": "string",
},
push={
"enabled": False,
"amazon_sns": {
"aws_access_key_id": "string",
"aws_region": "string",
"aws_secret_access_key": "string",
"sns_apns_platform_application_arn": "string",
"sns_gcm_platform_application_arn": "string",
},
"custom_app": {
"app_name": "string",
"apple_app_link": "string",
"google_app_link": "string",
},
"direct_apns": {
"bundle_id": "string",
"p12": "string",
"sandbox": False,
"enabled": False,
},
"direct_fcm": {
"server_key": "string",
},
"provider": "string",
},
recovery_code=False,
webauthn_platform={
"enabled": False,
"override_relying_party": False,
"relying_party_identifier": "string",
},
webauthn_roaming={
"enabled": False,
"override_relying_party": False,
"relying_party_identifier": "string",
"user_verification": "string",
})
const guardianResource = new auth0.Guardian("guardianResource", {
policy: "string",
duo: {
enabled: false,
hostname: "string",
integrationKey: "string",
secretKey: "string",
},
email: false,
otp: false,
phone: {
enabled: false,
messageTypes: ["string"],
options: {
authToken: "string",
enrollmentMessage: "string",
from: "string",
messagingServiceSid: "string",
sid: "string",
verificationMessage: "string",
},
provider: "string",
},
push: {
enabled: false,
amazonSns: {
awsAccessKeyId: "string",
awsRegion: "string",
awsSecretAccessKey: "string",
snsApnsPlatformApplicationArn: "string",
snsGcmPlatformApplicationArn: "string",
},
customApp: {
appName: "string",
appleAppLink: "string",
googleAppLink: "string",
},
directApns: {
bundleId: "string",
p12: "string",
sandbox: false,
enabled: false,
},
directFcm: {
serverKey: "string",
},
provider: "string",
},
recoveryCode: false,
webauthnPlatform: {
enabled: false,
overrideRelyingParty: false,
relyingPartyIdentifier: "string",
},
webauthnRoaming: {
enabled: false,
overrideRelyingParty: false,
relyingPartyIdentifier: "string",
userVerification: "string",
},
});
type: auth0:Guardian
properties:
duo:
enabled: false
hostname: string
integrationKey: string
secretKey: string
email: false
otp: false
phone:
enabled: false
messageTypes:
- string
options:
authToken: string
enrollmentMessage: string
from: string
messagingServiceSid: string
sid: string
verificationMessage: string
provider: string
policy: string
push:
amazonSns:
awsAccessKeyId: string
awsRegion: string
awsSecretAccessKey: string
snsApnsPlatformApplicationArn: string
snsGcmPlatformApplicationArn: string
customApp:
appName: string
appleAppLink: string
googleAppLink: string
directApns:
bundleId: string
enabled: false
p12: string
sandbox: false
directFcm:
serverKey: string
enabled: false
provider: string
recoveryCode: false
webauthnPlatform:
enabled: false
overrideRelyingParty: false
relyingPartyIdentifier: string
webauthnRoaming:
enabled: false
overrideRelyingParty: false
relyingPartyIdentifier: string
userVerification: string
Guardian 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 Guardian resource accepts the following input properties:
- Policy string
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - Duo
Guardian
Duo - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- Email bool
- Indicates whether email MFA is enabled.
- Otp bool
- Indicates whether one time password MFA is enabled.
- Phone
Guardian
Phone - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- Push
Guardian
Push - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- Recovery
Code bool - Indicates whether recovery code MFA is enabled.
- Webauthn
Platform GuardianWebauthn Platform - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- Webauthn
Roaming GuardianWebauthn Roaming - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- Policy string
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - Duo
Guardian
Duo Args - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- Email bool
- Indicates whether email MFA is enabled.
- Otp bool
- Indicates whether one time password MFA is enabled.
- Phone
Guardian
Phone Args - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- Push
Guardian
Push Args - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- Recovery
Code bool - Indicates whether recovery code MFA is enabled.
- Webauthn
Platform GuardianWebauthn Platform Args - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- Webauthn
Roaming GuardianWebauthn Roaming Args - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- policy String
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - duo
Guardian
Duo - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- email Boolean
- Indicates whether email MFA is enabled.
- otp Boolean
- Indicates whether one time password MFA is enabled.
- phone
Guardian
Phone - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- push
Guardian
Push - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- recovery
Code Boolean - Indicates whether recovery code MFA is enabled.
- webauthn
Platform GuardianWebauthn Platform - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- webauthn
Roaming GuardianWebauthn Roaming - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- policy string
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - duo
Guardian
Duo - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- email boolean
- Indicates whether email MFA is enabled.
- otp boolean
- Indicates whether one time password MFA is enabled.
- phone
Guardian
Phone - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- push
Guardian
Push - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- recovery
Code boolean - Indicates whether recovery code MFA is enabled.
- webauthn
Platform GuardianWebauthn Platform - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- webauthn
Roaming GuardianWebauthn Roaming - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- policy str
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - duo
Guardian
Duo Args - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- email bool
- Indicates whether email MFA is enabled.
- otp bool
- Indicates whether one time password MFA is enabled.
- phone
Guardian
Phone Args - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- push
Guardian
Push Args - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- recovery_
code bool - Indicates whether recovery code MFA is enabled.
- webauthn_
platform GuardianWebauthn Platform Args - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- webauthn_
roaming GuardianWebauthn Roaming Args - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- policy String
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - duo Property Map
- Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- email Boolean
- Indicates whether email MFA is enabled.
- otp Boolean
- Indicates whether one time password MFA is enabled.
- phone Property Map
- Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- push Property Map
- Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- recovery
Code Boolean - Indicates whether recovery code MFA is enabled.
- webauthn
Platform Property Map - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- webauthn
Roaming Property Map - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
Outputs
All input properties are implicitly available as output properties. Additionally, the Guardian 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 Guardian Resource
Get an existing Guardian 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?: GuardianState, opts?: CustomResourceOptions): Guardian@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
duo: Optional[GuardianDuoArgs] = None,
email: Optional[bool] = None,
otp: Optional[bool] = None,
phone: Optional[GuardianPhoneArgs] = None,
policy: Optional[str] = None,
push: Optional[GuardianPushArgs] = None,
recovery_code: Optional[bool] = None,
webauthn_platform: Optional[GuardianWebauthnPlatformArgs] = None,
webauthn_roaming: Optional[GuardianWebauthnRoamingArgs] = None) -> Guardianfunc GetGuardian(ctx *Context, name string, id IDInput, state *GuardianState, opts ...ResourceOption) (*Guardian, error)public static Guardian Get(string name, Input<string> id, GuardianState? state, CustomResourceOptions? opts = null)public static Guardian get(String name, Output<String> id, GuardianState state, CustomResourceOptions options)resources: _: type: auth0:Guardian 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.
- Duo
Guardian
Duo - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- Email bool
- Indicates whether email MFA is enabled.
- Otp bool
- Indicates whether one time password MFA is enabled.
- Phone
Guardian
Phone - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- Policy string
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - Push
Guardian
Push - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- Recovery
Code bool - Indicates whether recovery code MFA is enabled.
- Webauthn
Platform GuardianWebauthn Platform - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- Webauthn
Roaming GuardianWebauthn Roaming - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- Duo
Guardian
Duo Args - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- Email bool
- Indicates whether email MFA is enabled.
- Otp bool
- Indicates whether one time password MFA is enabled.
- Phone
Guardian
Phone Args - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- Policy string
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - Push
Guardian
Push Args - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- Recovery
Code bool - Indicates whether recovery code MFA is enabled.
- Webauthn
Platform GuardianWebauthn Platform Args - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- Webauthn
Roaming GuardianWebauthn Roaming Args - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- duo
Guardian
Duo - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- email Boolean
- Indicates whether email MFA is enabled.
- otp Boolean
- Indicates whether one time password MFA is enabled.
- phone
Guardian
Phone - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- policy String
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - push
Guardian
Push - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- recovery
Code Boolean - Indicates whether recovery code MFA is enabled.
- webauthn
Platform GuardianWebauthn Platform - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- webauthn
Roaming GuardianWebauthn Roaming - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- duo
Guardian
Duo - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- email boolean
- Indicates whether email MFA is enabled.
- otp boolean
- Indicates whether one time password MFA is enabled.
- phone
Guardian
Phone - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- policy string
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - push
Guardian
Push - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- recovery
Code boolean - Indicates whether recovery code MFA is enabled.
- webauthn
Platform GuardianWebauthn Platform - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- webauthn
Roaming GuardianWebauthn Roaming - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- duo
Guardian
Duo Args - Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- email bool
- Indicates whether email MFA is enabled.
- otp bool
- Indicates whether one time password MFA is enabled.
- phone
Guardian
Phone Args - Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- policy str
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - push
Guardian
Push Args - Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- recovery_
code bool - Indicates whether recovery code MFA is enabled.
- webauthn_
platform GuardianWebauthn Platform Args - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- webauthn_
roaming GuardianWebauthn Roaming Args - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
- duo Property Map
- Configuration settings for the Duo MFA. If this block is present, Duo MFA will be enabled, and disabled otherwise.
- email Boolean
- Indicates whether email MFA is enabled.
- otp Boolean
- Indicates whether one time password MFA is enabled.
- phone Property Map
- Configuration settings for the phone MFA. If this block is present, Phone MFA will be enabled, and disabled otherwise.
- policy String
- Policy to use. Available options are
never,all-applicationsandconfidence-score. - push Property Map
- Configuration settings for the Push MFA. If this block is present, Push MFA will be enabled, and disabled otherwise.
- recovery
Code Boolean - Indicates whether recovery code MFA is enabled.
- webauthn
Platform Property Map - Configuration settings for the WebAuthn with FIDO Device Biometrics MFA. If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
- webauthn
Roaming Property Map - Configuration settings for the WebAuthn with FIDO Security Keys MFA. If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
Supporting Types
GuardianDuo, GuardianDuoArgs
- Enabled bool
- Indicates whether Duo MFA is enabled.
- Hostname string
- Duo API Hostname, see the Duo documentation for more details on Duo setup.
- Integration
Key string - Duo client ID, see the Duo documentation for more details on Duo setup.
- Secret
Key string - Duo client secret, see the Duo documentation for more details on Duo setup.
- Enabled bool
- Indicates whether Duo MFA is enabled.
- Hostname string
- Duo API Hostname, see the Duo documentation for more details on Duo setup.
- Integration
Key string - Duo client ID, see the Duo documentation for more details on Duo setup.
- Secret
Key string - Duo client secret, see the Duo documentation for more details on Duo setup.
- enabled Boolean
- Indicates whether Duo MFA is enabled.
- hostname String
- Duo API Hostname, see the Duo documentation for more details on Duo setup.
- integration
Key String - Duo client ID, see the Duo documentation for more details on Duo setup.
- secret
Key String - Duo client secret, see the Duo documentation for more details on Duo setup.
- enabled boolean
- Indicates whether Duo MFA is enabled.
- hostname string
- Duo API Hostname, see the Duo documentation for more details on Duo setup.
- integration
Key string - Duo client ID, see the Duo documentation for more details on Duo setup.
- secret
Key string - Duo client secret, see the Duo documentation for more details on Duo setup.
- enabled bool
- Indicates whether Duo MFA is enabled.
- hostname str
- Duo API Hostname, see the Duo documentation for more details on Duo setup.
- integration_
key str - Duo client ID, see the Duo documentation for more details on Duo setup.
- secret_
key str - Duo client secret, see the Duo documentation for more details on Duo setup.
- enabled Boolean
- Indicates whether Duo MFA is enabled.
- hostname String
- Duo API Hostname, see the Duo documentation for more details on Duo setup.
- integration
Key String - Duo client ID, see the Duo documentation for more details on Duo setup.
- secret
Key String - Duo client secret, see the Duo documentation for more details on Duo setup.
GuardianPhone, GuardianPhoneArgs
- Enabled bool
- Indicates whether Phone MFA is enabled.
- Message
Types List<string> - Message types to use, array of
smsand/orvoice. Adding both to the array should enable the user to choose. - Options
Guardian
Phone Options - Options for the various providers.
- Provider string
- Provider to use, one of
auth0,twilioorphone-message-hook. Selectingphone-message-hookwill require a Phone Message Action to be created before. Learn how.
- Enabled bool
- Indicates whether Phone MFA is enabled.
- Message
Types []string - Message types to use, array of
smsand/orvoice. Adding both to the array should enable the user to choose. - Options
Guardian
Phone Options - Options for the various providers.
- Provider string
- Provider to use, one of
auth0,twilioorphone-message-hook. Selectingphone-message-hookwill require a Phone Message Action to be created before. Learn how.
- enabled Boolean
- Indicates whether Phone MFA is enabled.
- message
Types List<String> - Message types to use, array of
smsand/orvoice. Adding both to the array should enable the user to choose. - options
Guardian
Phone Options - Options for the various providers.
- provider String
- Provider to use, one of
auth0,twilioorphone-message-hook. Selectingphone-message-hookwill require a Phone Message Action to be created before. Learn how.
- enabled boolean
- Indicates whether Phone MFA is enabled.
- message
Types string[] - Message types to use, array of
smsand/orvoice. Adding both to the array should enable the user to choose. - options
Guardian
Phone Options - Options for the various providers.
- provider string
- Provider to use, one of
auth0,twilioorphone-message-hook. Selectingphone-message-hookwill require a Phone Message Action to be created before. Learn how.
- enabled bool
- Indicates whether Phone MFA is enabled.
- message_
types Sequence[str] - Message types to use, array of
smsand/orvoice. Adding both to the array should enable the user to choose. - options
Guardian
Phone Options - Options for the various providers.
- provider str
- Provider to use, one of
auth0,twilioorphone-message-hook. Selectingphone-message-hookwill require a Phone Message Action to be created before. Learn how.
- enabled Boolean
- Indicates whether Phone MFA is enabled.
- message
Types List<String> - Message types to use, array of
smsand/orvoice. Adding both to the array should enable the user to choose. - options Property Map
- Options for the various providers.
- provider String
- Provider to use, one of
auth0,twilioorphone-message-hook. Selectingphone-message-hookwill require a Phone Message Action to be created before. Learn how.
GuardianPhoneOptions, GuardianPhoneOptionsArgs
- Auth
Token string - Enrollment
Message string - From string
- Messaging
Service stringSid - Sid string
- Verification
Message string
- Auth
Token string - Enrollment
Message string - From string
- Messaging
Service stringSid - Sid string
- Verification
Message string
- auth
Token String - enrollment
Message String - from String
- messaging
Service StringSid - sid String
- verification
Message String
- auth
Token string - enrollment
Message string - from string
- messaging
Service stringSid - sid string
- verification
Message string
- auth_
token str - enrollment_
message str - from_ str
- messaging_
service_ strsid - sid str
- verification_
message str
- auth
Token String - enrollment
Message String - from String
- messaging
Service StringSid - sid String
- verification
Message String
GuardianPush, GuardianPushArgs
- Enabled bool
- Indicates whether Push MFA is enabled.
- Amazon
Sns GuardianPush Amazon Sns - Configuration for Amazon SNS.
- Custom
App GuardianPush Custom App - Configuration for the Guardian Custom App.
- Direct
Apns GuardianPush Direct Apns - Configuration for the Apple Push Notification service (APNs) settings.
- Direct
Fcm GuardianPush Direct Fcm - Configuration for Firebase Cloud Messaging (FCM) settings.
- Provider string
- Provider to use, one of
direct,guardian,sns.
- Enabled bool
- Indicates whether Push MFA is enabled.
- Amazon
Sns GuardianPush Amazon Sns - Configuration for Amazon SNS.
- Custom
App GuardianPush Custom App - Configuration for the Guardian Custom App.
- Direct
Apns GuardianPush Direct Apns - Configuration for the Apple Push Notification service (APNs) settings.
- Direct
Fcm GuardianPush Direct Fcm - Configuration for Firebase Cloud Messaging (FCM) settings.
- Provider string
- Provider to use, one of
direct,guardian,sns.
- enabled Boolean
- Indicates whether Push MFA is enabled.
- amazon
Sns GuardianPush Amazon Sns - Configuration for Amazon SNS.
- custom
App GuardianPush Custom App - Configuration for the Guardian Custom App.
- direct
Apns GuardianPush Direct Apns - Configuration for the Apple Push Notification service (APNs) settings.
- direct
Fcm GuardianPush Direct Fcm - Configuration for Firebase Cloud Messaging (FCM) settings.
- provider String
- Provider to use, one of
direct,guardian,sns.
- enabled boolean
- Indicates whether Push MFA is enabled.
- amazon
Sns GuardianPush Amazon Sns - Configuration for Amazon SNS.
- custom
App GuardianPush Custom App - Configuration for the Guardian Custom App.
- direct
Apns GuardianPush Direct Apns - Configuration for the Apple Push Notification service (APNs) settings.
- direct
Fcm GuardianPush Direct Fcm - Configuration for Firebase Cloud Messaging (FCM) settings.
- provider string
- Provider to use, one of
direct,guardian,sns.
- enabled bool
- Indicates whether Push MFA is enabled.
- amazon_
sns GuardianPush Amazon Sns - Configuration for Amazon SNS.
- custom_
app GuardianPush Custom App - Configuration for the Guardian Custom App.
- direct_
apns GuardianPush Direct Apns - Configuration for the Apple Push Notification service (APNs) settings.
- direct_
fcm GuardianPush Direct Fcm - Configuration for Firebase Cloud Messaging (FCM) settings.
- provider str
- Provider to use, one of
direct,guardian,sns.
- enabled Boolean
- Indicates whether Push MFA is enabled.
- amazon
Sns Property Map - Configuration for Amazon SNS.
- custom
App Property Map - Configuration for the Guardian Custom App.
- direct
Apns Property Map - Configuration for the Apple Push Notification service (APNs) settings.
- direct
Fcm Property Map - Configuration for Firebase Cloud Messaging (FCM) settings.
- provider String
- Provider to use, one of
direct,guardian,sns.
GuardianPushAmazonSns, GuardianPushAmazonSnsArgs
- Aws
Access stringKey Id - Aws
Region string - Aws
Secret stringAccess Key - Sns
Apns stringPlatform Application Arn - Sns
Gcm stringPlatform Application Arn
- Aws
Access stringKey Id - Aws
Region string - Aws
Secret stringAccess Key - Sns
Apns stringPlatform Application Arn - Sns
Gcm stringPlatform Application Arn
- aws
Access StringKey Id - aws
Region String - aws
Secret StringAccess Key - sns
Apns StringPlatform Application Arn - sns
Gcm StringPlatform Application Arn
- aws
Access stringKey Id - aws
Region string - aws
Secret stringAccess Key - sns
Apns stringPlatform Application Arn - sns
Gcm stringPlatform Application Arn
- aws
Access StringKey Id - aws
Region String - aws
Secret StringAccess Key - sns
Apns StringPlatform Application Arn - sns
Gcm StringPlatform Application Arn
GuardianPushCustomApp, GuardianPushCustomAppArgs
- App
Name string - Apple
App stringLink - Google
App stringLink
- App
Name string - Apple
App stringLink - Google
App stringLink
- app
Name String - apple
App StringLink - google
App StringLink
- app
Name string - apple
App stringLink - google
App stringLink
- app_
name str - apple_
app_ strlink - google_
app_ strlink
- app
Name String - apple
App StringLink - google
App StringLink
GuardianPushDirectApns, GuardianPushDirectApnsArgs
GuardianPushDirectFcm, GuardianPushDirectFcmArgs
- Server
Key string
- Server
Key string
- server
Key String
- server
Key string
- server_
key str
- server
Key String
GuardianWebauthnPlatform, GuardianWebauthnPlatformArgs
- Enabled bool
- Indicates whether WebAuthn with FIDO Device Biometrics MFA is enabled.
- Override
Relying boolParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - Relying
Party stringIdentifier - The Relying Party should be a suffix of the custom domain.
- Enabled bool
- Indicates whether WebAuthn with FIDO Device Biometrics MFA is enabled.
- Override
Relying boolParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - Relying
Party stringIdentifier - The Relying Party should be a suffix of the custom domain.
- enabled Boolean
- Indicates whether WebAuthn with FIDO Device Biometrics MFA is enabled.
- override
Relying BooleanParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - relying
Party StringIdentifier - The Relying Party should be a suffix of the custom domain.
- enabled boolean
- Indicates whether WebAuthn with FIDO Device Biometrics MFA is enabled.
- override
Relying booleanParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - relying
Party stringIdentifier - The Relying Party should be a suffix of the custom domain.
- enabled bool
- Indicates whether WebAuthn with FIDO Device Biometrics MFA is enabled.
- override_
relying_ boolparty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - relying_
party_ stridentifier - The Relying Party should be a suffix of the custom domain.
- enabled Boolean
- Indicates whether WebAuthn with FIDO Device Biometrics MFA is enabled.
- override
Relying BooleanParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - relying
Party StringIdentifier - The Relying Party should be a suffix of the custom domain.
GuardianWebauthnRoaming, GuardianWebauthnRoamingArgs
- Enabled bool
- Indicates whether WebAuthn with FIDO Security Keys MFA is enabled.
- Override
Relying boolParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - Relying
Party stringIdentifier - The Relying Party should be a suffix of the custom domain.
- User
Verification string - User verification, one of
discouraged,preferredorrequired.
- Enabled bool
- Indicates whether WebAuthn with FIDO Security Keys MFA is enabled.
- Override
Relying boolParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - Relying
Party stringIdentifier - The Relying Party should be a suffix of the custom domain.
- User
Verification string - User verification, one of
discouraged,preferredorrequired.
- enabled Boolean
- Indicates whether WebAuthn with FIDO Security Keys MFA is enabled.
- override
Relying BooleanParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - relying
Party StringIdentifier - The Relying Party should be a suffix of the custom domain.
- user
Verification String - User verification, one of
discouraged,preferredorrequired.
- enabled boolean
- Indicates whether WebAuthn with FIDO Security Keys MFA is enabled.
- override
Relying booleanParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - relying
Party stringIdentifier - The Relying Party should be a suffix of the custom domain.
- user
Verification string - User verification, one of
discouraged,preferredorrequired.
- enabled bool
- Indicates whether WebAuthn with FIDO Security Keys MFA is enabled.
- override_
relying_ boolparty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - relying_
party_ stridentifier - The Relying Party should be a suffix of the custom domain.
- user_
verification str - User verification, one of
discouraged,preferredorrequired.
- enabled Boolean
- Indicates whether WebAuthn with FIDO Security Keys MFA is enabled.
- override
Relying BooleanParty - The Relying Party is the domain for which the WebAuthn keys will be issued, set to
trueif you are customizing the identifier. - relying
Party StringIdentifier - The Relying Party should be a suffix of the custom domain.
- user
Verification String - User verification, one of
discouraged,preferredorrequired.
Import
As this is not a resource identifiable by an ID within the Auth0 Management API, guardian can be imported using a random string. # We recommend Version 4 UUID # Example
$ pulumi import auth0:index/guardian:Guardian my_guardian 24940d4b-4bd4-44e7-894e-f92e4de36a40
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0Terraform Provider.
published on Monday, Mar 9, 2026 by Pulumi
