Last active
August 31, 2020 08:12
-
-
Save demiters/8da51d90bf0a2c5ba80aa4c0163dd51d to your computer and use it in GitHub Desktop.
Ansible example playbook for installing Windows 10 software
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: localhost | |
connection: local | |
tasks: | |
- name: Install Chocolatey packages | |
win_chocolatey: | |
name: | |
- vscode | |
- git | |
- nvm | |
- docker-desktop | |
- chromium | |
- slack | |
- dropbox | |
state: latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment