| Current Path : /opt/imh-python/lib/python3.9/site-packages/openstack/tests/ansible/roles/group/tasks/ |
| Current File : //opt/imh-python/lib/python3.9/site-packages/openstack/tests/ansible/roles/group/tasks/main.yml |
---
- 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 }}"