Skip to main content

Jitconfiguration

Properties

NameTypeDescriptionNotes
EnabledBooleanThe indicator for just-in-time provisioning enabled[optional] [default to $false]
SourceIdStringthe sourceId that mapped to just-in-time provisioning configuration[optional]
SourceAttributeMappingsmap[string]StringA mapping of identity profile attribute names to SAML assertion attribute names[optional]

Examples

  • Prepare the resource
$Jitconfiguration = Initialize-Jitconfiguration  -Enabled false `
-SourceId 2c9180857377ed2901739c12a2da5ac8 `
-SourceAttributeMappings {"firstName":"okta.firstName","lastName":"okta.lastName","email":"okta.email"}
  • Convert the resource to JSON
$Jitconfiguration | ConvertTo-JSON

[Back to top]