mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[cloud] Convert nat gateway facts to ansible format (#20962)
Use camel_dict_to_snake_dict
This commit is contained in:
parent
3af6ad1687
commit
459724da6b
1 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@ EXAMPLES = '''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
result:
|
result:
|
||||||
description: The result of the describe.
|
description: The result of the describe, converted to ansible snake case style.
|
||||||
See http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.describe_nat_gateways for the response.
|
See http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.describe_nat_gateways for the response.
|
||||||
returned: success
|
returned: success
|
||||||
type: list
|
type: list
|
||||||
|
@ -114,7 +114,7 @@ def get_nat_gateways(client, module, nat_gateway_id=None):
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
module.fail_json(msg=str(e.message))
|
module.fail_json(msg=str(e.message))
|
||||||
|
|
||||||
return result['NatGateways']
|
return [camel_dict_to_snake_dict(gateway) for gateway in result['NatGateways']]
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Reference in a new issue