summaryrefslogtreecommitdiff
path: root/test/legacy/roles
diff options
context:
space:
mode:
authorRémy Léone <remy.leone@gmail.com>2018-10-07 12:08:25 +0200
committerJohn R Barker <john@johnrbarker.com>2018-10-07 05:08:25 -0500
commit6ab07d1a7423a510874f3b3564a4e62a726ddeeb (patch)
treebcb074111ebbd73dbdcf221fed808baa94a76d23 /test/legacy/roles
parentaaa3b2dc2d9ecf3b9b1b4cffca9ee89514450c4c (diff)
downloadansible-6ab07d1a7423a510874f3b3564a4e62a726ddeeb.tar.gz
Add region to snapshots facts (#46213)
Diffstat (limited to 'test/legacy/roles')
-rw-r--r--test/legacy/roles/scaleway_snapshot_facts/tasks/main.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/legacy/roles/scaleway_snapshot_facts/tasks/main.yml b/test/legacy/roles/scaleway_snapshot_facts/tasks/main.yml
index 17929cc56c..bf7c2eb4dd 100644
--- a/test/legacy/roles/scaleway_snapshot_facts/tasks/main.yml
+++ b/test/legacy/roles/scaleway_snapshot_facts/tasks/main.yml
@@ -1,5 +1,8 @@
+# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_snapshot_facts
+
- name: Get snapshot informations and register it in a variable
scaleway_snapshot_facts:
+ region: par1
register: snapshots
- name: Display snapshots variable
@@ -10,3 +13,17 @@
assert:
that:
- snapshots is success
+
+- name: Get snapshot informations and register it in a variable (AMS1)
+ scaleway_snapshot_facts:
+ region: ams1
+ register: ams1_snapshots
+
+- name: Display snapshots variable (AMS1)
+ debug:
+ var: ams1_snapshots
+
+- name: Ensure retrieval of snapshots facts is success (AMS1)
+ assert:
+ that:
+ - ams1_snapshots is success