mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Specify region in IP facts (#46210)
This commit is contained in:
parent
2903033c1d
commit
4967ef5936
2 changed files with 41 additions and 2 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 ips facts
|
- name: Gather Scaleway ips facts
|
||||||
scaleway_ip_facts:
|
scaleway_ip_facts:
|
||||||
|
region: par1
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = r'''
|
RETURN = r'''
|
||||||
|
@ -52,7 +64,10 @@ scaleway_ip_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,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -62,10 +77,17 @@ class ScalewayIpFacts(Scaleway):
|
||||||
super(ScalewayIpFacts, self).__init__(module)
|
super(ScalewayIpFacts, self).__init__(module)
|
||||||
self.name = 'ips'
|
self.name = 'ips'
|
||||||
|
|
||||||
|
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_ip_facts
|
||||||
|
|
||||||
- name: Get ip informations and register it in a variable
|
- name: Get ip informations and register it in a variable
|
||||||
scaleway_ip_facts:
|
scaleway_ip_facts:
|
||||||
|
region: par1
|
||||||
register: ips
|
register: ips
|
||||||
|
|
||||||
- name: Display ips variable
|
- name: Display ips variable
|
||||||
|
@ -10,3 +13,17 @@
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- ips is success
|
- ips is success
|
||||||
|
|
||||||
|
- name: Get ip informations and register it in a variable
|
||||||
|
scaleway_ip_facts:
|
||||||
|
region: ams1
|
||||||
|
register: ips_ams1
|
||||||
|
|
||||||
|
- name: Display ips variable
|
||||||
|
debug:
|
||||||
|
var: ips_ams1
|
||||||
|
|
||||||
|
- name: Ensure retrieval of ips facts is success
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- ips_ams1 is success
|
||||||
|
|
Loading…
Add table
Reference in a new issue