Add region to the volume facts (#46214)
This commit is contained in:
parent
a520ca3298
commit
c3e5ebfa79
2 changed files with 40 additions and 3 deletions
|
@ -22,11 +22,23 @@ author:
|
||||||
- "Yanis Guenane (@Spredzy)"
|
- "Yanis Guenane (@Spredzy)"
|
||||||
- "Remy Leone (@sieben)"
|
- "Remy Leone (@sieben)"
|
||||||
extends_documentation_fragment: scaleway
|
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'''
|
EXAMPLES = r'''
|
||||||
- name: Gather Scaleway volumes facts
|
- name: Gather Scaleway volumes facts
|
||||||
scaleway_volume_facts:
|
scaleway_volume_facts:
|
||||||
|
region: par1
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = r'''
|
RETURN = r'''
|
||||||
|
@ -54,8 +66,8 @@ scaleway_volume_facts:
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible.module_utils.scaleway import (
|
from ansible.module_utils.scaleway import (
|
||||||
Scaleway, ScalewayException, scaleway_argument_spec
|
Scaleway, ScalewayException, scaleway_argument_spec,
|
||||||
)
|
SCALEWAY_LOCATION)
|
||||||
|
|
||||||
|
|
||||||
class ScalewayVolumeFacts(Scaleway):
|
class ScalewayVolumeFacts(Scaleway):
|
||||||
|
@ -64,10 +76,18 @@ class ScalewayVolumeFacts(Scaleway):
|
||||||
super(ScalewayVolumeFacts, self).__init__(module)
|
super(ScalewayVolumeFacts, self).__init__(module)
|
||||||
self.name = 'volumes'
|
self.name = 'volumes'
|
||||||
|
|
||||||
|
region = module.params["region"]
|
||||||
|
self.module.params['api_url'] = SCALEWAY_LOCATION[region]["api_endpoint"]
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
argument_spec = scaleway_argument_spec()
|
||||||
|
argument_spec.update(dict(
|
||||||
|
region=dict(required=True, choices=SCALEWAY_LOCATION.keys()),
|
||||||
|
))
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=scaleway_argument_spec(),
|
argument_spec=argument_spec,
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
|
# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_volume_facts
|
||||||
|
|
||||||
- name: Get volume informations and register it in a variable
|
- name: Get volume informations and register it in a variable
|
||||||
scaleway_volume_facts:
|
scaleway_volume_facts:
|
||||||
|
region: par1
|
||||||
register: volumes
|
register: volumes
|
||||||
|
|
||||||
- name: Display volumes variable
|
- name: Display volumes variable
|
||||||
|
@ -10,3 +13,17 @@
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- volumes is success
|
- volumes is success
|
||||||
|
|
||||||
|
- name: Get volume informations and register it in a variable (AMS1)
|
||||||
|
scaleway_volume_facts:
|
||||||
|
region: ams1
|
||||||
|
register: ams1_volumes
|
||||||
|
|
||||||
|
- name: Display volumes variable
|
||||||
|
debug:
|
||||||
|
var: ams1_volumes
|
||||||
|
|
||||||
|
- name: Ensure retrieval of volumes facts is success
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- ams1_volumes is success
|
||||||
|
|
Loading…
Reference in a new issue