Example Configuration Profiles
The following PLIST file examples can be used as a starting point to manually create Jamf Connect configuration profiles.
Note: If using these examples to create a configuration profile for your environment, make sure to replace key values with your own. Additional key-value pairs may be required depending on your cloud identity provider (IdP).
Jamf Connect Login
Basic OpenID Connect Authentication
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>OIDCProvider</key>
<string>Azure</string>
<key>OIDCROPGID</key>
<string>3bdd52c7-ee36-4689-8517-c5fed2c98s5</string>
<key>OIDCClientID</key>
<string>3bdd52c7-ee36-4689-8517-c5fed2c98s5</string>
<key>OIDCNewPassword</key>
<false/>
</dict>
</plist>
OpenID Connect Authentication with Okta
If you prefer to use OpenID Connect authentication with Okta rather than Okta's authentication API, use the following PLIST:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>OIDCProvider</key>
<string>OktaPreview</string>
<key>OIDCClientID</key>
<string>8abcdxyz5euEkvwH3ertih2</string>
<key>OIDCNewPassword</key>
<false/>
<key>OIDCROPGID</key>
<string>8abcdxyz5euEkvwH3ertih2</string>
<key>OIDCRedirectURI</key>
<string>https://127.0.0.1/jamfconnect</string>
<key>OIDCTenant</key>
<string>your-okta-tenant</string>
</dict>
</plist>
Jamf Connect Sync
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AuthServer</key>
<string>yourcompany.okta.com</string>
<key>LocalPasswordSync</key>
<true/>
<key>PasswordExpirationMenu</key>
<true/>
<key>UseKeychain</key>
<true/>
</dict>
</plist>
Jamf Connect Verify
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>OIDCProvider</key>
<string>Azure</string>
<key>OIDCROPGID</key>
<string>3bdd52c7-ee36-4689-8517-c5fed2c98s5</string>
</dict>
</plist>