Skip to content

Latest commit

 

History

History
175 lines (138 loc) · 5.64 KB

community.windows.win_audit_policy_system_module.rst

File metadata and controls

175 lines (138 loc) · 5.64 KB

community.windows.win_audit_policy_system

Used to make changes to the system wide Audit Policy

  • Used to make changes to the system wide Audit Policy.
Parameter Choices/Defaults Comments
audit_type
list / required
    Choices:
  • failure
  • none
  • success
The type of event you would like to audit for.
Accepts a list. See examples.
category
string
Single string value for the category you would like to adjust the policy on.
Cannot be used with subcategory. You must define one or the other.
Changing this setting causes all subcategories to be adjusted to the defined audit_type.
subcategory
string
Single string value for the subcategory you would like to adjust the policy on.
Cannot be used with category. You must define one or the other.

Note

.. seealso::

   :ref:`community.windows.win_audit_rule_module`
      The official documentation on the **community.windows.win_audit_rule** module.


- name: Enable failure auditing for the subcategory "File System"
  community.windows.win_audit_policy_system:
    subcategory: File System
    audit_type: failure

- name: Enable all auditing types for the category "Account logon events"
  community.windows.win_audit_policy_system:
    category: Account logon events
    audit_type: success, failure

- name: Disable auditing for the subcategory "File System"
  community.windows.win_audit_policy_system:
    subcategory: File System
    audit_type: none

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
current_audit_policy
dictionary
always
details on the policy being targetted

Sample:
{ "File Share":"failure" }


Authors

  • Noah Sparks (@nwsparks)