Module factor

This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-okta repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-okta repo.

Resources

Others

Resources

Resource Factor

class Factor extends CustomResource

Allows you to manage the activation of Okta MFA methods.

This resource allows you to manage Okta MFA methods.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = new okta.factor.Factor("example", {});

constructor

new Factor(name: string, args: FactorArgs, opts?: pulumi.CustomResourceOptions)

Create a Factor resource with the given unique name, arguments, and options.

  • name The unique name of the resource.
  • args The arguments to use to populate this resource's properties.
  • opts A bag of options that control this resource's behavior.

method get

public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: FactorState, opts?: pulumi.CustomResourceOptions): Factor

Get an existing Factor resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

method getProvider

getProvider(moduleMember: string): ProviderResource | undefined

method isInstance

public static isInstance(obj: any): obj is Factor

Returns true if the given object is an instance of Factor. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.

property active

public active: pulumi.Output<boolean | undefined>;

Whether or not to activate the provider, by default it is set to true.

property id

id: Output<ID>;

id is the provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

property providerId

public providerId: pulumi.Output<string>;

Factor provider ID

property urn

urn: Output<URN>;

urn is the stable logical URN used to distinctly address a resource, both before and after deployments.

Others

interface FactorArgs

interface FactorArgs

The set of arguments for constructing a Factor resource.

property active

active?: pulumi.Input<boolean>;

Whether or not to activate the provider, by default it is set to true.

property providerId

providerId: pulumi.Input<string>;

Factor provider ID

interface FactorState

interface FactorState

Input properties used for looking up and filtering Factor resources.

property active

active?: pulumi.Input<boolean>;

Whether or not to activate the provider, by default it is set to true.

property providerId

providerId?: pulumi.Input<string>;

Factor provider ID