Files
fleet/articles/enable-okta-verify-on-macOS-with-configuration-profile.md
T
+3 c9803c2a8f Docs: non-proxied cert renewal (#45695)
**Related issue:** Resolves #44348

**Base branch:** `docs-v4.86.0` (not `main`) per the docs release
process.

## What this PR does

Updates four customer-facing guides and adds a release-notes entry for
Phase 2's opt-in cert renewal feature (shipped via #45696). Frames the
marker as an opt-in enhancement: profiles without it continue to work as
in 4.85; profiles with it activate auto-renewal.

| Guide | Change |
|-------|--------|
| `connect-end-user-to-wifi-with-certificate.md` | Migrated 11 legacy
`\$FLEET_VAR_SCEP_RENEWAL_ID` refs to the preferred name; added
back-compat callout. |
| `okta-conditional-access-integration.md` | Removed "Automatic renewal
coming soon" line; added one-time upgrade-redeploy callout for existing
customers. |
| `enable-okta-verify-on-macOS-with-configuration-profile.md` | Added
marker to example profile OU; added opt-in note and CA-side
OU-preservation verification step. Coordinated with the earlier
example-profile update from #43293 already on `docs-v4.86.0`. |
| `enable-okta-verify-on-windows-using-a-scep-configuration-profile.md`
| Replaced manual-redeployment narrative with auto-renewal guidance.
Kept the policy-based expiry-monitoring SQL as an optional safeguard. |

Release-notes entry (`changes/40639-non-proxied-cert-renewal`)
consolidates Phase 2 customer-visible behavior in three bullets.

## Dependencies

The Conditional Access guide's "new setups: no extra action needed"
framing assumes #45662 (the Fleet-side template marker addition) has
landed — it has, merged into the feature branch and onward into main via
#45696.

# Checklist for submitter

- [x] Changes file added for user-visible changes

## Testing

- [x] Doc review only — no code changes

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **New Features**
* Automatic certificate renewal is now supported for SCEP and ACME
certificates from external certificate authorities, enabled by default
for new deployments with an opt-in path for existing customers
* macOS devices with ACME-bearing configuration profiles will now
surface hardware-bound certificates in device vitals

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Rachael Shaw <r@rachael.wtf>
Co-authored-by: Marko Lisica <83164494+marko-lisica@users.noreply.github.com>
Co-authored-by: kilo-code-bot[bot] <240665456+kilo-code-bot[bot]@users.noreply.github.com>
Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>
Co-authored-by: melpike <79950145+melpike@users.noreply.github.com>
Co-authored-by: Noah Talerman <47070608+noahtalerman@users.noreply.github.com>
Co-authored-by: Jordan Montgomery <elijah.jordan.montgomery@gmail.com>
Co-authored-by: Jonathan Katz <44128041+jkatz01@users.noreply.github.com>
Co-authored-by: Victor Lyuboslavsky <2685025+getvictor@users.noreply.github.com>
Co-authored-by: Magnus Jensen <magnus@fleetdm.com>
Co-authored-by: RachelElysia <71795832+RachelElysia@users.noreply.github.com>
Co-authored-by: Scott Gress <scottmgress@gmail.com>
2026-07-10 17:37:50 -05:00

7.1 KiB
Raw Blame History

Enable Okta Verify on macOS using configuration profile

Introduction

This guide will show you how to install Okta Verify on your macOS hosts and set them as managed by issuing a SCEP certificate via a configuration profile managed through Fleet.

By following these steps, you can automate the deployment of Okta Verify across your devices. This will allow you to enforce multifactor authentication policies, improve device security, and manage user access seamlessly.

Prerequisites

  • MDM enabled and configured

Step-by-step instructions

Step 1: Install Okta Verify on your hosts

Okta Verify can be installed:

After installing Okta Verify on the host, the device will be registered in Okta.

Step 2: Issue a SCEP certificate for management attestation

The next step to ensure Okta detects the device as managed is to issue a SCEP certificate.

  • Follow the instructions on the Okta documentation to configure a certificate authority using a static SCEP challenge. If you're using a dynamic challenge, follow this separate guide.
  • In your text editor, copy and paste the following configuration profile and edit the relevant values:
    • [REPLACE_WITH_CHALLENGE] with the SCEP challenge you generated in the previous step.
    • [REPLACE_WITH_URL]with the URL to your SCEP server.
    • Adjust the CN value according to your organization's needs. You can use any of the profile variables to uniquely identify your device. In the example %ComputerName% managementAttestation %HardwareUUID%, the certificate Common Name (CN) will contain both the computer name and the hardware UUID.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Inc//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
	<key>PayloadVersion</key>
	<integer>1</integer>
	<key>PayloadType</key>
	<string>Configuration</string>
	<key>PayloadIdentifier</key>
	<string>Ignored</string>
	<key>PayloadUUID</key>
	<string>Ignored</string>
	<key>PayloadDisplayName</key>
	<string>SCEP device attestation</string>
	<key>PayloadContent</key>
	<array>
  	<dict>
    	<key>PayloadContent</key>
    	<dict>
      	<key>Key Type</key>
      	<string>RSA</string>
      	<key>Challenge</key>
      	<string>[REPLACE_WITH_CHALLENGE]</string>
      	<key>Key Usage</key>
      	<integer>1</integer>
      	<key>Keysize</key>
      	<integer>2048</integer>
      	<key>URL</key>
  	<string>[REPLACE_WITH_URL]</string>
  	<key>AllowAllAppsAccess</key>
  	<true />
  	<key>KeyIsExtractable</key>
  	<false />
      	<key>Subject</key>
      	<array>
        	<array>
          	<array>
            	<string>O</string>
            	<string>Fleet</string>
          	</array>
        	</array>
        	<array>
          	<array>
            	<string>CN</string>
            	<string>%ComputerName% managementAttestation %HardwareUUID%</string>
          	</array>
        	</array>
        	<array>
          	<array>
            	<string>OU</string>
            	<string>$FLEET_VAR_CERTIFICATE_RENEWAL_ID</string>
          	</array>
        	</array>
      	</array>
    	</dict>
    	<key>PayloadIdentifier</key>
    	<string>com.apple.security.scep.C2D94E67-4F1A-4A3C-8142-7523A8D35713</string>
    	<key>PayloadType</key>
    	<string>com.apple.security.scep</string>
    	<key>PayloadUUID</key>
    	<string>632289FA-C3E0-481A-A417-BF40012FB729</string>
    	<key>PayloadVersion</key>
    	<integer>1</integer>
  	</dict>
	</array>
  </dict>
</plist>

Make sure to use .mobileconfig as the file extension

Automatic renewal: the $FLEET_VAR_CERTIFICATE_RENEWAL_ID variable in the OU is what enables Fleet to auto-renew this certificate. Include it to opt in; omit it to manage renewal manually (the cert will continue to work, but won't auto-renew before expiry).

CA-side requirement: your SCEP CA must preserve the Subject OU in issued certificates for auto-renewal to work. Verify by decoding an issued cert (Keychain Access → Get Info, or openssl x509 -text) and confirming the OU contains fleet-<profile_uuid> after deployment.

SELECT * FROM certificates where common_name like '%managementAttestation%';

Step 3: Configure device management in Okta

With Okta Verify installed and an attestation certificate in place, all left is to configure Okta and the device for device management, useful links from the Okta documentation are:

Make sure the device is properly set up in Okta and that the user has used Okta FastPass at least once to see it as managed on the Okta dashboard.

Conclusion

This guide covered how to install Okta Verify on your macOS hosts, issue a SCEP certificate for management attestation, and configure device management in Okta. By automating this process through Fleet, you can enforce multi-factor authentication, improve device security, and ensure that devices accessing your organizations resources are properly managed.

For more detailed information on managing devices and using Okta Verify, explore the Okta documentation and Fleets guides to optimize your device management strategy further.

See Fleet's documentation and additional guides for more details on advanced setups, software features, and vulnerability detection.