2021-12-15 01:03:37 +01:00
|
|
|
---
|
2021-12-20 18:48:05 +01:00
|
|
|
- name: Create Windows group ansibles
|
2021-12-15 01:03:37 +01:00
|
|
|
ansible.windows.win_group:
|
2021-12-20 18:48:05 +01:00
|
|
|
name: 'Ansibles'
|
2021-12-15 01:03:37 +01:00
|
|
|
description: 'Group for Ansible Management'
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: create ansible User
|
|
|
|
ansible.windows.win_user:
|
|
|
|
name: 'ansible'
|
|
|
|
state: present
|
2021-12-20 19:21:47 +01:00
|
|
|
password: "{{ lookup('community.general.passwordstore', win_base_init__pass_prefix + '/' + inventory_hostname + '/login/ansible create=true length=42 nosymbols=true') }}"
|
2021-12-15 01:03:37 +01:00
|
|
|
account_disabled: false
|
|
|
|
description: 'Account to run ansible commands at this WINDOWS host'
|
|
|
|
groups_action: 'add'
|
|
|
|
password_expired: false
|
|
|
|
password_never_expires: true
|
|
|
|
user_cannot_change_password: true
|
2022-01-01 21:19:08 +01:00
|
|
|
groups: "{{ win_base_init__os_groups }}"
|