diff --git a/lib/ansible/modules/extras/network/cloudflare_dns.py b/lib/ansible/modules/extras/network/cloudflare_dns.py index 9afbeccff7..238e7dff98 100644 --- a/lib/ansible/modules/extras/network/cloudflare_dns.py +++ b/lib/ansible/modules/extras/network/cloudflare_dns.py @@ -3,7 +3,7 @@ # (c) 2016 Michael Gruener # -# This file is (intends to be) part of Ansible +# This file is part of Ansible # # Ansible is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -114,7 +114,7 @@ options: ''' EXAMPLES = ''' -# create a test.my.com A record to point to 127.0.0.01 +# create a test.my.com A record to point to 127.0.0.1 - cloudflare_dns: zone: my.com record: test @@ -428,7 +428,6 @@ class CloudflareAPI(object): if (not value) and (value is not None): value = self.value - zone_id = self._get_zone_id() api_call = '/zones/{0}/dns_records'.format(zone_id) query = {}