d_strobel.windows.fsrm_file_screen_template (1.4.0) — module

Add or modify file screen templates

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

Add or modify file screen templates for the File Server Resource Manager.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Ensure simple file screen template is present
  d_strobel.windows_fsrm.win_fsrm_file_screen_template:
    name: test_template
    description: Managed by Ansible
    file_group:
      - test_group
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Ensure simple file screen template is removed
  d_strobel.windows_fsrm.win_fsrm_file_screen_template:
    name: test_template
    description: Managed by Ansible
    file_group:
      - test_group
    state: present

Inputs

    
state:
    choices:
    - absent
    - present
    description:
    - Set to C(present) to ensure the file screen template is present.
    - Set to C(absent) to ensure the file screen template is removed.
    type: str