/opt/imh-python/lib/python3.9/site-packages/openstack/tests/ansible/roles/group/tasks
Edit: /opt/imh-python/lib/python3.9/site-packages/openstack/tests/ansible/roles/group/tasks/main.yml (372B)
---
- name: Create group
os_group:
cloud: "{{ cloud }}"
state: present
name: "{{ group_name }}"
- name: Update group
os_group:
cloud: "{{ cloud }}"
state: present
name: "{{ group_name }}"
description: "updated description"
- name: Delete group
os_group:
cloud: "{{ cloud }}"
state: absent
name: "{{ group_name }}"