8d5195fdf2
Updating role_assignment module to use the new openstacksdk Change-Id: I09258e18d50acb57501ea1b47d9422dad857607e
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
---
|
|
- name: Create project
|
|
openstack.cloud.project:
|
|
cloud: "{{ cloud }}"
|
|
state: present
|
|
name: ansible_project
|
|
description: dummy description
|
|
domain_id: default
|
|
enabled: True
|
|
register: project
|
|
|
|
- name: Grant an admin role on the user admin in the project ansible_project
|
|
openstack.cloud.role_assignment:
|
|
cloud: "{{ cloud }}"
|
|
domain: default
|
|
project: ansible_project
|
|
role: admin
|
|
user: admin
|
|
|
|
- name: Grant an admin role on the user admin in the project ansible_project again
|
|
openstack.cloud.role_assignment:
|
|
cloud: "{{ cloud }}"
|
|
domain: default
|
|
project: ansible_project
|
|
role: admin
|
|
user: admin
|
|
register: grant_again
|
|
|
|
- name: Ensure grant again doesn't change anything
|
|
assert:
|
|
that:
|
|
- not grant_again.changed
|
|
|
|
- name: Revoke the admin role on the user admin in the project ansible_project
|
|
openstack.cloud.role_assignment:
|
|
cloud: "{{ cloud }}"
|
|
domain: default
|
|
project: ansible_project
|
|
role: admin
|
|
state: absent
|
|
user: admin
|
|
|
|
- name: Delete project
|
|
openstack.cloud.project:
|
|
cloud: "{{ cloud }}"
|
|
state: absent
|
|
name: ansible_project
|