mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
2
tests/integration/targets/scaleway_volume/aliases
Normal file
2
tests/integration/targets/scaleway_volume/aliases
Normal file
|
@ -0,0 +1,2 @@
|
|||
cloud/scaleway
|
||||
unsupported
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
scaleway_organization: '{{ scw_org }}'
|
||||
scaleway_region: ams1
|
41
tests/integration/targets/scaleway_volume/tasks/main.yml
Normal file
41
tests/integration/targets/scaleway_volume/tasks/main.yml
Normal file
|
@ -0,0 +1,41 @@
|
|||
- name: Make sure volume is not there before tests
|
||||
scaleway_volume:
|
||||
name: ansible-test-volume
|
||||
state: absent
|
||||
region: '{{ scaleway_region }}'
|
||||
organization: '{{ scaleway_organization }}'
|
||||
register: server_creation_check_task
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- server_creation_check_task is success
|
||||
|
||||
- name: Create volume
|
||||
scaleway_volume:
|
||||
name: ansible-test-volume
|
||||
state: present
|
||||
region: '{{ scaleway_region }}'
|
||||
organization: '{{ scaleway_organization }}'
|
||||
"size": 10000000000
|
||||
volume_type: l_ssd
|
||||
register: server_creation_check_task
|
||||
|
||||
- debug: var=server_creation_check_task
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- server_creation_check_task is success
|
||||
- server_creation_check_task is changed
|
||||
|
||||
- name: Make sure volume is deleted
|
||||
scaleway_volume:
|
||||
name: ansible-test-volume
|
||||
state: absent
|
||||
region: '{{ scaleway_region }}'
|
||||
organization: '{{ scaleway_organization }}'
|
||||
register: server_creation_check_task
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- server_creation_check_task is success
|
||||
- server_creation_check_task is changed
|
Loading…
Add table
Add a link
Reference in a new issue