mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-01 07:27:35 +00:00
10 lines
176 B
YAML
10 lines
176 B
YAML
- hosts: windows
|
|
gather_facts: no
|
|
tasks:
|
|
- name: "Remove account"
|
|
ansible.windows.win_domain_user:
|
|
name: "{{ account.username }}"
|
|
state: absent
|
|
|
|
|