Compare commits
No commits in common. "80d9b2aacb2de55dd549000a78f85094fa5d5556" and "a1e0cea8210a11725b40db0a59769bb1331a156a" have entirely different histories.
80d9b2aacb
...
a1e0cea821
4 changed files with 2 additions and 31 deletions
|
@ -1,6 +1,6 @@
|
|||
win_ansible_role_base_setup
|
||||
win_ansible_role_setup_user
|
||||
=============================
|
||||
|
||||
WINDOWS Ansible role to create a little base Setup for my Ansible Managed Windows 10 Enterprise Hosts
|
||||
WINDOWS Ansible role to create a Setup Users called ansible to manage your Windows 10 host
|
||||
|
||||
## Please not, this is my first windows role and highly experimental!
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
---
|
||||
win_base_init__ansible_password: ''
|
|
@ -1,24 +0,0 @@
|
|||
---
|
||||
- name: Create Windows group ansible
|
||||
become: true
|
||||
ansible.windows.win_group:
|
||||
name: 'Ansible'
|
||||
description: 'Group for Ansible Management'
|
||||
state: present
|
||||
|
||||
- name: create ansible User
|
||||
become: true
|
||||
ansible.windows.win_user:
|
||||
name: 'ansible'
|
||||
state: present
|
||||
password:
|
||||
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
|
||||
groups:
|
||||
- 'Users'
|
||||
- 'Administrator'
|
||||
- 'Ansible'
|
|
@ -1,3 +0,0 @@
|
|||
---
|
||||
- name: create Ansible Windows Group and User
|
||||
ansible.builtin.include_task: ansible_user.yml
|
Loading…
Reference in a new issue