mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-08 22:30:04 -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_server_info/aliases
Normal file
2
tests/integration/targets/scaleway_server_info/aliases
Normal file
|
@ -0,0 +1,2 @@
|
|||
cloud/scaleway
|
||||
unsupported
|
|
@ -0,0 +1,27 @@
|
|||
- name: Get server informations and register it in a variable
|
||||
scaleway_server_info:
|
||||
region: par1
|
||||
register: servers
|
||||
|
||||
- name: Display servers variable
|
||||
debug:
|
||||
var: servers
|
||||
|
||||
- name: Ensure retrieval of servers info is success
|
||||
assert:
|
||||
that:
|
||||
- servers is success
|
||||
|
||||
- name: Get server informations and register it in a variable
|
||||
scaleway_server_info:
|
||||
region: ams1
|
||||
register: ams1_servers
|
||||
|
||||
- name: Display servers variable
|
||||
debug:
|
||||
var: ams1_servers
|
||||
|
||||
- name: Ensure retrieval of servers info is success
|
||||
assert:
|
||||
that:
|
||||
- ams1_servers is success
|
Loading…
Add table
Add a link
Reference in a new issue