mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Add region parameters to sg (#46211)
This commit is contained in:
committed by
John R Barker
parent
3a1d8867ed
commit
2903033c1d
@@ -1,5 +1,8 @@
|
||||
# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_security_group_facts
|
||||
|
||||
- name: Get security group informations and register it in a variable
|
||||
scaleway_security_group_facts:
|
||||
region: par1
|
||||
register: security_groups
|
||||
|
||||
- name: Display security_groups variable
|
||||
@@ -10,3 +13,17 @@
|
||||
assert:
|
||||
that:
|
||||
- security_groups is success
|
||||
|
||||
- name: Get security group informations and register it in a variable (AMS1)
|
||||
scaleway_security_group_facts:
|
||||
region: ams1
|
||||
register: ams1_security_groups
|
||||
|
||||
- name: Display security_groups variable (AMS1)
|
||||
debug:
|
||||
var: ams1_security_groups
|
||||
|
||||
- name: Ensure retrieval of security groups facts is success (AMS1)
|
||||
assert:
|
||||
that:
|
||||
- ams1_security_groups is success
|
||||
|
||||
Reference in New Issue
Block a user