Merge pull request #831 from j-carl/feature-route53-nameserver
List the name servers of a zone. Fixes #801
This commit is contained in:
commit
8b290c6274
1 changed files with 7 additions and 1 deletions
|
@ -374,7 +374,13 @@ def main():
|
|||
break
|
||||
|
||||
if command_in == 'get':
|
||||
module.exit_json(changed=False, set=record)
|
||||
if type_in == 'NS':
|
||||
ns = record['values']
|
||||
else:
|
||||
# Retrieve name servers associated to the zone.
|
||||
ns = conn.get_zone(zone_in).get_nameservers()
|
||||
|
||||
module.exit_json(changed=False, set=record, nameservers=ns)
|
||||
|
||||
if command_in == 'delete' and not found_record:
|
||||
module.exit_json(changed=False)
|
||||
|
|
Loading…
Reference in a new issue