Files
ansible-collections-openstack/ci/roles/group/tasks/main.yml
Sagi Shnaidman 7c52b83b52 Run functional devstack job on ansible collection
Porting of job that was running on patches in Ansible.

Change-Id: Ifa5a6b40d6a0f1de9f2cbc917a55c2d0e8ac421d
2020-01-21 00:25:48 +02:00

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 }}"