Skip to Content
Admin PortalPolicy Configuration

Policy Configuration

Policies control who can use self-service and under what conditions.

Policy Basics

A policy defines:

  • Who: Target groups or OUs
  • What: Allowed actions (unlock, reset)
  • When: Risk thresholds for auto-approval

Creating a Policy

  1. Go to Policies → Create Policy
  2. Configure settings (see below)
  3. Click Save

Basic Settings

FieldDescription
NameDescriptive name
DescriptionPurpose of policy
ActiveEnable/disable
PriorityOrder of evaluation

Scope Settings

FieldDescription
Target GroupsAD groups to include
Target OUsOUs to include
Exclude GroupsAD groups to exclude

Action Settings

ActionDescription
Account UnlockAllow unlocking accounts
Password ResetAllow resetting passwords

Risk Thresholds

ThresholdAction When Exceeded
Auto-approveRequest auto-approved
NotifyAuto-approve but alert admin
Manual approvalRequire admin approval
BlockDeny request

Example Policies

Standard Employees

name: Standard Employees target_ous: - "OU=Staff,OU=Users,DC=company,DC=local" exclude_groups: - "Domain Admins" actions: - unlock - reset_password thresholds: auto_approve: 30 notify: 50 manual_approve: 79 block: 80

IT Department (Stricter)

name: IT Department target_groups: - "IT Staff" exclude_groups: - "Domain Admins" actions: - unlock - reset_password thresholds: auto_approve: 20 notify: 35 manual_approve: 50 block: 60

Contractors (Limited)

name: Contractors target_ous: - "OU=Contractors,DC=company,DC=local" actions: - unlock # No password reset thresholds: auto_approve: 15 notify: 25 manual_approve: 40 block: 50

Policy Evaluation

When a request is made:

  1. Find policies matching user (by group/OU)
  2. If multiple match, use most restrictive
  3. Calculate risk score
  4. Apply threshold rules
Last updated on