Add region to server facts (#46212)
This commit is contained in:
parent
6ab07d1a74
commit
3a1d8867ed
2 changed files with 42 additions and 2 deletions
|
@ -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 servers facts
|
||||
scaleway_server_facts:
|
||||
region: par1
|
||||
'''
|
||||
|
||||
RETURN = r'''
|
||||
|
@ -138,7 +150,10 @@ scaleway_server_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,
|
||||
)
|
||||
|
||||
|
||||
|
@ -148,10 +163,18 @@ class ScalewayServerFacts(Scaleway):
|
|||
super(ScalewayServerFacts, self).__init__(module)
|
||||
self.name = 'servers'
|
||||
|
||||
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,
|
||||
)
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_server_facts
|
||||
|
||||
- name: Get server informations and register it in a variable
|
||||
scaleway_server_facts:
|
||||
region: par1
|
||||
register: servers
|
||||
|
||||
- name: Display servers variable
|
||||
|
@ -10,3 +13,17 @@
|
|||
assert:
|
||||
that:
|
||||
- servers is success
|
||||
|
||||
- name: Get server informations and register it in a variable
|
||||
scaleway_server_facts:
|
||||
region: ams1
|
||||
register: ams1_servers
|
||||
|
||||
- name: Display servers variable
|
||||
debug:
|
||||
var: ams1_servers
|
||||
|
||||
- name: Ensure retrieval of servers facts is success
|
||||
assert:
|
||||
that:
|
||||
- ams1_servers is success
|
||||
|
|
Loading…
Reference in a new issue