fleet/schema/tables/pwd_policy.yml
Scott Gress a30d8e46a5
Update pwd_policy table docs (#33181)
for #31346 

# Details

Updated the docs for the `days_to_expiration` column of the `pwd_policy`
table.

# Checklist for submitter

- [X] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
See [Changes
files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/guides/committing-changes.md#changes-files)
for more information.
2025-09-24 17:32:54 -05:00

32 lines
1.2 KiB
YAML

name: pwd_policy
platforms:
- darwin
description: Password Policy (e.g., max failed password attempts).
columns:
- name: max_failed_attempts
type: integer
required: false
description: |-
The account lockout threshold specifies the amount of times a user can enter an incorrect password before a lockout will occur. Ensure that a lockout threshold is part of the password policy on the computer.
- name: expires_every_n_days
type: integer
required: false
description: |-
How many days for a new password to expire.
- name: days_to_expiration
type: integer
required: false
description: |-
Synonym for expires_every_n_days (not typically set in macOS 10.15+).
- name: history_depth
type: integer
required: false
description: |-
This parameter indicates the depth of password history which a new password can't be identical to.
- name: min_mixed_case_characters
type: integer
required: false
description: |-
This parameter indicates the minimum number of mixed characters in a password.
notes: This table is not a core osquery table. It is included as part of Fleet's agent ([fleetd](https://fleetdm.com/docs/get-started/anatomy#fleetd)).
evented: false