d_strobel.windows.wsus_install_approval_rule (1.4.0) — module

Modify an update install approval rule

Authors: Dustin Strobel (@d-strobel)

Install collection

Install with ansible-galaxy collection install d_strobel.windows:==1.4.0


Add to requirements.yml

  collections:
    - name: d_strobel.windows
      version: 1.4.0

Description

Modify an update install approval rule

Inputs

    
name:
    description:
    - Specify the name of the approval rule.
    required: true
    type: str

state:
    choices:
    - absent
    - present
    - disabled
    default: present
    description:
    - Set to C(present) to ensure the settings are present.
    - Set to C(absent) to ensure the settings are removed.
    - Set to C(disabled) to disable the rule but apply all settings.
    type: str

deadline:
    description:
    - Set a deadline for the updates to be approved.
    type: str

update_categories:
    aliases:
    - update_products
    description:
    - Define a list of update products.
    - The categories will always be set when something differs with the current state.
    elements: str
    type: list

computer_target_groups:
    description:
    - Define a list of computer target groups.
    - The groups will always be set when something differs with the current state.
    elements: str
    type: list

update_classifications:
    description:
    - Define a list of update classifications.
    - The classifications will always be set when something differs with the current state.
    elements: str
    type: list