Rename all of the modules

This is separate from the previous patch - it's just the results
of running the script so we can review the two a little independently.
We should probably squash them.

Change-Id: I838f15cf4a32455a5be20033c8ddc27db6ca15c0
This commit is contained in:
Monty Taylor
2020-05-12 10:20:09 -05:00
parent 52905480b8
commit e47c4671c7
154 changed files with 15307 additions and 15029 deletions

View File

@@ -1,7 +1,7 @@
---
- name: 'Create project with properties - CHECK_MODE'
check_mode: yes
openstack.cloud.os_project:
openstack.cloud.project:
cloud: "{{ cloud }}"
state: present
name: ansible_project
@@ -17,7 +17,7 @@
- create_project_cm is changed
- name: 'Create project with properties'
openstack.cloud.os_project:
openstack.cloud.project:
cloud: "{{ cloud }}"
state: present
name: ansible_project
@@ -37,7 +37,7 @@
- name: 'Create project with properties (retry - no change) - CHECK_MODE'
check_mode: yes
openstack.cloud.os_project:
openstack.cloud.project:
cloud: "{{ cloud }}"
state: present
name: ansible_project
@@ -53,7 +53,7 @@
- create_project_retry_cm is not changed
- name: 'Create project with properties (retry - no change)'
openstack.cloud.os_project:
openstack.cloud.project:
cloud: "{{ cloud }}"
state: present
name: ansible_project
@@ -73,7 +73,7 @@
- name: 'Update project with properties - CHECK_MODE'
check_mode: yes
openstack.cloud.os_project:
openstack.cloud.project:
cloud: "{{ cloud }}"
state: present
name: ansible_project
@@ -87,7 +87,7 @@
- updated_project_cm is changed
- name: 'Update project with properties'
openstack.cloud.os_project:
openstack.cloud.project:
cloud: "{{ cloud }}"
state: present
name: ansible_project
@@ -105,7 +105,7 @@
- name: 'Update project with properties (retry - no change) - CHECK_MODE'
check_mode: yes
openstack.cloud.os_project:
openstack.cloud.project:
cloud: "{{ cloud }}"
state: present
name: ansible_project
@@ -119,7 +119,7 @@
- updated_project_retry_cm is not changed
- name: 'Update project with properties (retry - no change)'
openstack.cloud.os_project:
openstack.cloud.project:
cloud: "{{ cloud }}"
state: present
name: ansible_project
@@ -136,7 +136,7 @@
- updated_project_retry["project"].dummy_key == dummy_value_updated
- name: Delete project with properties
openstack.cloud.os_project:
openstack.cloud.project:
cloud: "{{ cloud }}"
state: absent
name: ansible_project