You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# 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
|
|
|
|
debug:
|
|
|
|
var: security_groups
|
|
|
|
|
|
|
|
- name: Ensure retrieval of security groups facts is success
|
|
|
|
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
|