Makes rax_dns_record override default to true

This commit is contained in:
bobgroves 2015-04-19 14:01:46 -04:00 committed by Matt Clay
parent 65697dea14
commit 18d4a33891

View file

@ -49,7 +49,7 @@ options:
- Add new records if data doesn't match, instead of updating existing - Add new records if data doesn't match, instead of updating existing
record with matching name. If there are already multiple records with record with matching name. If there are already multiple records with
matching name and overwrite=true, this module will fail. matching name and overwrite=true, this module will fail.
default: false default: true
priority: priority:
description: description:
- Required for MX and SRV records, but forbidden for other record types. - Required for MX and SRV records, but forbidden for other record types.
@ -190,7 +190,7 @@ def rax_dns_record_ptr(module, data=None, comment=None, loadbalancer=None,
def rax_dns_record(module, comment=None, data=None, domain=None, name=None, def rax_dns_record(module, comment=None, data=None, domain=None, name=None,
overwrite=False, priority=None, record_type='A', overwrite=True, priority=None, record_type='A',
state='present', ttl=7200): state='present', ttl=7200):
"""Function for manipulating record types other than PTR""" """Function for manipulating record types other than PTR"""