https://github.com/artcom/ansible-role-win-auto-login
Ansible role to configure auto login on a Windows 10 machine
https://github.com/artcom/ansible-role-win-auto-login
Last synced: 4 months ago
JSON representation
Ansible role to configure auto login on a Windows 10 machine
- Host: GitHub
- URL: https://github.com/artcom/ansible-role-win-auto-login
- Owner: artcom
- License: mit
- Created: 2020-09-30T10:35:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T10:39:39.000Z (over 5 years ago)
- Last Synced: 2024-12-27T12:22:42.307Z (over 1 year ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 15
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Win Auto Login
Ansible role to configure auto login on a Windows 10 machine.
## Requirements
None
## Role Variables
Available variables are listed below, along with default values `(see defaults/main.yml)`:
```yaml
auto_login_user: null
auto_login_user_password: null
```
Required variables (role will fail if the variables are not set):
```yaml
auto_login_user: "string"
auto_login_user_password: "string"
```
## Dependencies
* [check-required-variables](https://github.com/artcom/ansible-role-check-required-variables)
## Example Playbook
```yaml
- hosts: all
tasks:
- import_role:
name: win-auto-login
vars:
auto_login_user: "{{ ansible_user }}"
auto_login_user_password: "Sup3r5eKret"
```
## License
MIT