Ansible/playbook/windows/choco/installBrave.yml

13 lines
219 B
YAML
Raw Normal View History

- name: Install Brave Browser from Choco
hosts: windows
tasks:
- name: Install Package
win_chocolatey:
name: brave
state: present
register: output
- debug: msg="{{ output }}"