This repository has been archived on 2022-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
win_ansible_remove_win_apps/tasks/remove_apps_as_user.yml
2021-12-20 22:19:36 +01:00

8 lines
237 B
YAML

---
- name: remove windows apps as user
ansible.windows.win_package:
product_id: "{{ remove_win_apps__product_id }}"
state: absent
become_method: runas
become_user: "{{ item }}"
with_items: "{{ remove_win_apps__users }}"