Mfa

Creates an MFA Policy.

This resource allows you to create and configure an MFA Policy.

Example Usage

using Pulumi;
using Okta = Pulumi.Okta;

class MyStack : Stack
{
    public MyStack()
    {
        var example = new Okta.Policy.Mfa("example", new Okta.Policy.MfaArgs
        {
            Description = "Example",
            GroupsIncludeds = 
            {
                data.Okta_group.Everyone.Id,
            },
            OktaOtp = new Okta.Policy.Inputs.MfaOktaOtpArgs
            {
                Enroll = "REQUIRED",
            },
            Status = "ACTIVE",
        });
    }

}

Coming soon!

import pulumi
import pulumi_okta as okta

example = okta.policy.Mfa("example",
    description="Example",
    groups_includeds=[data["okta.group.Group"]["everyone"]["id"]],
    okta_otp={
        "enroll": "REQUIRED",
    },
    status="ACTIVE")
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = new okta.policy.Mfa("example", {
    description: "Example",
    groupsIncludeds: [okta_group_everyone.id],
    oktaOtp: {
        enroll: "REQUIRED",
    },
    status: "ACTIVE",
});

Create a Mfa Resource

new Mfa(name: string, args?: MfaArgs, opts?: CustomResourceOptions);
def Mfa(resource_name, opts=None, description=None, duo=None, fido_u2f=None, fido_webauthn=None, google_otp=None, groups_includeds=None, name=None, okta_call=None, okta_otp=None, okta_password=None, okta_push=None, okta_question=None, okta_sms=None, priority=None, rsa_token=None, status=None, symantec_vip=None, yubikey_token=None, __props__=None);
func NewMfa(ctx *Context, name string, args *MfaArgs, opts ...ResourceOption) (*Mfa, error)
public Mfa(string name, MfaArgs? args = null, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args MfaArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args MfaArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args MfaArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

Mfa Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The Mfa resource accepts the following input properties:

Description string

Policy Description.

Duo MfaDuoArgs

DUO MFA policy settings.

FidoU2f MfaFidoU2fArgs

Fido U2F MFA policy settings.

FidoWebauthn MfaFidoWebauthnArgs

Fido Web Authn MFA policy settings.

GoogleOtp MfaGoogleOtpArgs

Google OTP MFA policy settings.

GroupsIncludeds List<string>

List of Group IDs to Include.

Name string

Policy Name.

OktaCall MfaOktaCallArgs

Okta Call MFA policy settings.

OktaOtp MfaOktaOtpArgs

Okta OTP MFA policy settings.

OktaPassword MfaOktaPasswordArgs

Okta Password MFA policy settings.

OktaPush MfaOktaPushArgs

Okta Push MFA policy settings.

OktaQuestion MfaOktaQuestionArgs

Okta Question MFA policy settings.

OktaSms MfaOktaSmsArgs

Okta SMS MFA policy settings.

Priority int

Priority of the policy.

RsaToken MfaRsaTokenArgs

RSA Token MFA policy settings.

Status string

Policy Status: "ACTIVE" or "INACTIVE".

SymantecVip MfaSymantecVipArgs

Symantec VIP MFA policy settings.

YubikeyToken MfaYubikeyTokenArgs

Yubikey Token MFA policy settings.

Description string

Policy Description.

Duo MfaDuo

DUO MFA policy settings.

FidoU2f MfaFidoU2f

Fido U2F MFA policy settings.

FidoWebauthn MfaFidoWebauthn

Fido Web Authn MFA policy settings.

GoogleOtp MfaGoogleOtp

Google OTP MFA policy settings.

GroupsIncludeds []string

List of Group IDs to Include.

Name string

Policy Name.

OktaCall MfaOktaCall

Okta Call MFA policy settings.

OktaOtp MfaOktaOtp

Okta OTP MFA policy settings.

OktaPassword MfaOktaPassword

Okta Password MFA policy settings.

OktaPush MfaOktaPush

Okta Push MFA policy settings.

OktaQuestion MfaOktaQuestion

Okta Question MFA policy settings.

OktaSms MfaOktaSms

Okta SMS MFA policy settings.

Priority int

Priority of the policy.

RsaToken MfaRsaToken

RSA Token MFA policy settings.

Status string

Policy Status: "ACTIVE" or "INACTIVE".

SymantecVip MfaSymantecVip

Symantec VIP MFA policy settings.

YubikeyToken MfaYubikeyToken

Yubikey Token MFA policy settings.

description string

Policy Description.

duo MfaDuo

DUO MFA policy settings.

fidoU2f MfaFidoU2f

Fido U2F MFA policy settings.

fidoWebauthn MfaFidoWebauthn

Fido Web Authn MFA policy settings.

googleOtp MfaGoogleOtp

Google OTP MFA policy settings.

groupsIncludeds string[]

List of Group IDs to Include.

name string

Policy Name.

oktaCall MfaOktaCall

Okta Call MFA policy settings.

oktaOtp MfaOktaOtp

Okta OTP MFA policy settings.

oktaPassword MfaOktaPassword

Okta Password MFA policy settings.

oktaPush MfaOktaPush

Okta Push MFA policy settings.

oktaQuestion MfaOktaQuestion

Okta Question MFA policy settings.

oktaSms MfaOktaSms

Okta SMS MFA policy settings.

priority number

Priority of the policy.

rsaToken MfaRsaToken

RSA Token MFA policy settings.

status string

Policy Status: "ACTIVE" or "INACTIVE".

symantecVip MfaSymantecVip

Symantec VIP MFA policy settings.

yubikeyToken MfaYubikeyToken

Yubikey Token MFA policy settings.

description str

Policy Description.

duo Dict[MfaDuo]

DUO MFA policy settings.

fido_u2f Dict[MfaFidoU2f]

Fido U2F MFA policy settings.

fido_webauthn Dict[MfaFidoWebauthn]

Fido Web Authn MFA policy settings.

google_otp Dict[MfaGoogleOtp]

Google OTP MFA policy settings.

groups_includeds List[str]

List of Group IDs to Include.

name str

Policy Name.

okta_call Dict[MfaOktaCall]

Okta Call MFA policy settings.

okta_otp Dict[MfaOktaOtp]

Okta OTP MFA policy settings.

okta_password Dict[MfaOktaPassword]

Okta Password MFA policy settings.

okta_push Dict[MfaOktaPush]

Okta Push MFA policy settings.

okta_question Dict[MfaOktaQuestion]

Okta Question MFA policy settings.

okta_sms Dict[MfaOktaSms]

Okta SMS MFA policy settings.

priority float

Priority of the policy.

rsa_token Dict[MfaRsaToken]

RSA Token MFA policy settings.

status str

Policy Status: "ACTIVE" or "INACTIVE".

symantec_vip Dict[MfaSymantecVip]

Symantec VIP MFA policy settings.

yubikey_token Dict[MfaYubikeyToken]

Yubikey Token MFA policy settings.

Outputs

All input properties are implicitly available as output properties. Additionally, the Mfa 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 str
The provider-assigned unique ID for this managed resource.

Look up an Existing Mfa Resource

Get an existing Mfa 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?: MfaState, opts?: CustomResourceOptions): Mfa
static get(resource_name, id, opts=None, description=None, duo=None, fido_u2f=None, fido_webauthn=None, google_otp=None, groups_includeds=None, name=None, okta_call=None, okta_otp=None, okta_password=None, okta_push=None, okta_question=None, okta_sms=None, priority=None, rsa_token=None, status=None, symantec_vip=None, yubikey_token=None, __props__=None);
func GetMfa(ctx *Context, name string, id IDInput, state *MfaState, opts ...ResourceOption) (*Mfa, error)
public static Mfa Get(string name, Input<string> id, MfaState? state, CustomResourceOptions? opts = null)
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.

The following state arguments are supported:

Description string

Policy Description.

Duo MfaDuoArgs

DUO MFA policy settings.

FidoU2f MfaFidoU2fArgs

Fido U2F MFA policy settings.

FidoWebauthn MfaFidoWebauthnArgs

Fido Web Authn MFA policy settings.

GoogleOtp MfaGoogleOtpArgs

Google OTP MFA policy settings.

GroupsIncludeds List<string>

List of Group IDs to Include.

Name string

Policy Name.

OktaCall MfaOktaCallArgs

Okta Call MFA policy settings.

OktaOtp MfaOktaOtpArgs

Okta OTP MFA policy settings.

OktaPassword MfaOktaPasswordArgs

Okta Password MFA policy settings.

OktaPush MfaOktaPushArgs

Okta Push MFA policy settings.

OktaQuestion MfaOktaQuestionArgs

Okta Question MFA policy settings.

OktaSms MfaOktaSmsArgs

Okta SMS MFA policy settings.

Priority int

Priority of the policy.

RsaToken MfaRsaTokenArgs

RSA Token MFA policy settings.

Status string

Policy Status: "ACTIVE" or "INACTIVE".

SymantecVip MfaSymantecVipArgs

Symantec VIP MFA policy settings.

YubikeyToken MfaYubikeyTokenArgs

Yubikey Token MFA policy settings.

Description string

Policy Description.

Duo MfaDuo

DUO MFA policy settings.

FidoU2f MfaFidoU2f

Fido U2F MFA policy settings.

FidoWebauthn MfaFidoWebauthn

Fido Web Authn MFA policy settings.

GoogleOtp MfaGoogleOtp

Google OTP MFA policy settings.

GroupsIncludeds []string

List of Group IDs to Include.

Name string

Policy Name.

OktaCall MfaOktaCall

Okta Call MFA policy settings.

OktaOtp MfaOktaOtp

Okta OTP MFA policy settings.

OktaPassword MfaOktaPassword

Okta Password MFA policy settings.

OktaPush MfaOktaPush

Okta Push MFA policy settings.

OktaQuestion MfaOktaQuestion

Okta Question MFA policy settings.

OktaSms MfaOktaSms

Okta SMS MFA policy settings.

Priority int

Priority of the policy.

RsaToken MfaRsaToken

RSA Token MFA policy settings.

Status string

Policy Status: "ACTIVE" or "INACTIVE".

SymantecVip MfaSymantecVip

Symantec VIP MFA policy settings.

YubikeyToken MfaYubikeyToken

Yubikey Token MFA policy settings.

description string

Policy Description.

duo MfaDuo

DUO MFA policy settings.

fidoU2f MfaFidoU2f

Fido U2F MFA policy settings.

fidoWebauthn MfaFidoWebauthn

Fido Web Authn MFA policy settings.

googleOtp MfaGoogleOtp

Google OTP MFA policy settings.

groupsIncludeds string[]

List of Group IDs to Include.

name string

Policy Name.

oktaCall MfaOktaCall

Okta Call MFA policy settings.

oktaOtp MfaOktaOtp

Okta OTP MFA policy settings.

oktaPassword MfaOktaPassword

Okta Password MFA policy settings.

oktaPush MfaOktaPush

Okta Push MFA policy settings.

oktaQuestion MfaOktaQuestion

Okta Question MFA policy settings.

oktaSms MfaOktaSms

Okta SMS MFA policy settings.

priority number

Priority of the policy.

rsaToken MfaRsaToken

RSA Token MFA policy settings.

status string

Policy Status: "ACTIVE" or "INACTIVE".

symantecVip MfaSymantecVip

Symantec VIP MFA policy settings.

yubikeyToken MfaYubikeyToken

Yubikey Token MFA policy settings.

description str

Policy Description.

duo Dict[MfaDuo]

DUO MFA policy settings.

fido_u2f Dict[MfaFidoU2f]

Fido U2F MFA policy settings.

fido_webauthn Dict[MfaFidoWebauthn]

Fido Web Authn MFA policy settings.

google_otp Dict[MfaGoogleOtp]

Google OTP MFA policy settings.

groups_includeds List[str]

List of Group IDs to Include.

name str

Policy Name.

okta_call Dict[MfaOktaCall]

Okta Call MFA policy settings.

okta_otp Dict[MfaOktaOtp]

Okta OTP MFA policy settings.

okta_password Dict[MfaOktaPassword]

Okta Password MFA policy settings.

okta_push Dict[MfaOktaPush]

Okta Push MFA policy settings.

okta_question Dict[MfaOktaQuestion]

Okta Question MFA policy settings.

okta_sms Dict[MfaOktaSms]

Okta SMS MFA policy settings.

priority float

Priority of the policy.

rsa_token Dict[MfaRsaToken]

RSA Token MFA policy settings.

status str

Policy Status: "ACTIVE" or "INACTIVE".

symantec_vip Dict[MfaSymantecVip]

Symantec VIP MFA policy settings.

yubikey_token Dict[MfaYubikeyToken]

Yubikey Token MFA policy settings.

Supporting Types

MfaDuo

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaFidoU2f

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaFidoWebauthn

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaGoogleOtp

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaOktaCall

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaOktaOtp

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaOktaPassword

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaOktaPush

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaOktaQuestion

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaOktaSms

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaRsaToken

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaSymantecVip

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

MfaYubikeyToken

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

ConsentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

Enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consentType string

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll string

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

consent_type str

User consent type required before enrolling in the factor: "NONE" or "TERMS_OF_SERVICE". By default it is "NONE".

enroll str

Requirements for user initiated enrollment. Can be "NOT_ALLOWED", "OPTIONAL", or "REQUIRED". By default it is "OPTIONAL".

Package Details

Repository
https://github.com/pulumi/pulumi-okta
License
Apache-2.0
Notes
This Pulumi package is based on the okta Terraform Provider.