Add region to snapshots facts (#46213)

This commit is contained in:
Rémy Léone 2018-10-07 12:08:25 +02:00 committed by John R Barker
parent aaa3b2dc2d
commit 6ab07d1a74
2 changed files with 42 additions and 2 deletions

View file

@ -22,11 +22,23 @@ author:
- "Yanis Guenane (@Spredzy)"
- "Remy Leone (@sieben)"
extends_documentation_fragment: scaleway
options:
region:
version_added: "2.8"
description:
- Scaleway region to use (for example par1).
required: true
choices:
- ams1
- EMEA-NL-EVS
- par1
- EMEA-FR-PAR1
'''
EXAMPLES = r'''
- name: Gather Scaleway snapshots facts
scaleway_snapshot_facts:
region: par1
'''
RETURN = r'''
@ -56,7 +68,10 @@ scaleway_snapshot_facts:
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.scaleway import (
Scaleway, ScalewayException, scaleway_argument_spec
Scaleway,
ScalewayException,
scaleway_argument_spec,
SCALEWAY_LOCATION
)
@ -66,10 +81,18 @@ class ScalewaySnapshotFacts(Scaleway):
super(ScalewaySnapshotFacts, self).__init__(module)
self.name = 'snapshots'
region = module.params["region"]
self.module.params['api_url'] = SCALEWAY_LOCATION[region]["api_endpoint"]
def main():
argument_spec = scaleway_argument_spec()
argument_spec.update(dict(
region=dict(required=True, choices=SCALEWAY_LOCATION.keys()),
))
module = AnsibleModule(
argument_spec=scaleway_argument_spec(),
argument_spec=argument_spec,
supports_check_mode=True,
)

View file

@ -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