Add region parameters to sg (#46211)

This commit is contained in:
Rémy Léone 2018-10-07 12:09:02 +02:00 committed by John R Barker
commit 2903033c1d
2 changed files with 41 additions and 2 deletions

View file

@ -21,12 +21,24 @@ version_added: "2.7"
author:
- "Yanis Guenane (@Spredzy)"
- "Remy Leone (@sieben)"
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
extends_documentation_fragment: scaleway
'''
EXAMPLES = r'''
- name: Gather Scaleway security groups facts
scaleway_security_group_facts:
region: par1
'''
RETURN = r'''
@ -56,7 +68,10 @@ scaleway_security_group_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,17 @@ class ScalewaySecurityGroupFacts(Scaleway):
super(ScalewaySecurityGroupFacts, self).__init__(module)
self.name = 'security_groups'
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,
)