ansible.builtin.win_group (v2.3.3.0-1) — module

Add and remove local groups

| "added in version" 1.7 of ansible.builtin"

Authors: Chris Hoffman (@chrishoffman)

stableinterface | supported by core

Install Ansible via pip

Install with pip install ansible==2.3.3.0.post1

Description

Add and remove local groups

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create a new group
  win_group:
    name: deploy
    description: Deploy Group
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Remove a group
  win_group:
    name: deploy
    state: absent

Inputs

    
name:
    aliases: []
    default: null
    description:
    - Name of the group
    required: true

state:
    aliases: []
    choices:
    - present
    - absent
    default: present
    description:
    - Create or remove the group
    required: false

description:
    aliases: []
    default: null
    description:
    - Description of the group
    required: false