Files
product-demos/playbooks/infrastructure/chocolatey_config.yml
2020-09-25 06:53:38 -07:00

18 lines
356 B
YAML

---
- name: configuring Chocolatey
hosts: windows
vars:
config_item: cacheLocation
state: present
value: C:\chocolatey_temp2
collections:
- chocolatey.chocolatey
tasks:
- name: set configuration parameter
win_chocolatey_config:
name: "{{ config_item }}"
state: "{{ state }}"
value: "{{ value }}"