Skip to main content

MfaOktaConfig

Properties

NameTypeDescriptionNotes
MfaMethodStringMfa method name[optional]
EnabledBooleanIf MFA method is enabled.[optional] [default to $false]
VarHostStringThe server host name or IP address of the MFA provider.[optional]
AccessKeyStringThe secret key for authenticating requests to the MFA provider.[optional]
IdentityAttributeStringOptional. The name of the attribute for mapping IdentityNow identity to the MFA provider.[optional]

Examples

  • Prepare the resource
$MfaOktaConfig = Initialize-PSSailpoint.V3MfaOktaConfig  -MfaMethod okta-verify `
-Enabled true `
-VarHost example.com `
-AccessKey qw123Y3QlA5UqocYpdU3rEkzrK2D497y `
-IdentityAttribute email
  • Convert the resource to JSON
$MfaOktaConfig | ConvertTo-JSON

[Back to top]