Device Approvals¶
Device Approvals is the trust gate for new agents. Use it to review enrollment requests before a device becomes manageable in Borealis.
Review Pending Devices¶
- Open
Inventory > Device Approvals. - Review hostname, site, enrollment code, approval reference, and request age.
- Approve devices you recognize.
- Reject requests that came from the wrong site, wrong code, unknown host, or unexpected fingerprint.
Admins can see all approvals. Non-admin operators see approvals only for assigned sites.
Handle Hostname Conflicts¶
If a requested hostname conflicts with an existing device, Borealis keeps that row pending for explicit review. Resolve conflict instead of bulk-approving blindly.
Bulk Approve¶
Bulk approval works for selected pending rows that do not need conflict resolution. Rows with conflicts remain pending.
Wrong-Code Attempts¶
Admins can use the invalid-code view to spot agents that are actively submitting bad enrollment codes. Borealis stores masked code data only, not full wrong codes.
Temporary Auto-Approval¶
Sites can carry a temporary auto_approve_until window. During that window, safe enrollments for the site are approved automatically unless hostname or identity conflict checks require review.
Warning
Approval grants device trust. Do not approve devices from unknown sites, stale onboarding attempts, or unexpected hostnames.
Detailed Codex Breakdown
API endpoints¶
GET /api/admin/device-approvals- approval queue scoped to operator site access.POST /api/admin/device-approvals/<approval_id>/approve- approve one request.POST /api/admin/device-approvals/<approval_id>/deny- deny one request.GET /api/admin/device-approvals?status=wrong_code- recent invalid-code attempts for admins.POST /api/sites/<site_id>/auto-approval- set or clear temporary site auto-approval.
Related documentation¶
Source map¶
- Approval API:
Data/Engine/Containers/api-backend/data/services/API/devices/approval.py - Enrollment tables:
device_approvals,enrollment_code_failures - Device approval route:
Data/Engine/Containers/webui-frontend/data/web-interface/src/app/routes/router.jsx
Runtime behavior¶
- Enrollment requests create pending approval rows tied to site context.
- Approval verifies hostname conflicts and device identity data before final trust is issued.
- Automatic local-network onboarding still uses normal approval. It can add
onboarding_job_id,onboarding_run_id, andonboarding_targetfor traceability.