mirror of
https://opendev.org/openstack/ansible-collections-openstack.git
synced 2026-07-25 17:24:28 +00:00
Porting of job that was running on patches in Ansible. Change-Id: Ifa5a6b40d6a0f1de9f2cbc917a55c2d0e8ac421d
20 lines
420 B
YAML
20 lines
420 B
YAML
---
|
|
- name: Create group
|
|
openstack.cloud.os_group:
|
|
cloud: "{{ cloud }}"
|
|
state: present
|
|
name: "{{ group_name }}"
|
|
|
|
- name: Update group
|
|
openstack.cloud.os_group:
|
|
cloud: "{{ cloud }}"
|
|
state: present
|
|
name: "{{ group_name }}"
|
|
description: "updated description"
|
|
|
|
- name: Delete group
|
|
openstack.cloud.os_group:
|
|
cloud: "{{ cloud }}"
|
|
state: absent
|
|
name: "{{ group_name }}"
|