@@ -13,25 +13,25 @@ class ModuleDocFragment(object):
13
13
DOCUMENTATION = r'''
14
14
description:
15
15
- The module allows to set, modify and delete multiple DNS records at once.
16
- - With the I (purge) option, it is also possible to delete existing records
16
+ - With the O (purge) option, it is also possible to delete existing records
17
17
that are not mentioned in the module parameters. With this, it is possible
18
18
to synchronize the expected state of a DNS zone with the expected state.
19
- - "It is possible to ignore certain records by specifying I (ignore: true) for
19
+ - "It is possible to ignore certain records by specifying O (ignore= true) for
20
20
that record."
21
21
22
22
options:
23
23
zone:
24
24
description:
25
25
- The DNS zone to modify.
26
- - Exactly one of I (zone) and I (zone_id) must be specified.
26
+ - Exactly one of O (zone) and O (zone_id) must be specified.
27
27
type: str
28
28
zone_id:
29
29
description:
30
30
- The ID of the DNS zone to modify.
31
- - Exactly one of I (zone) and I (zone_id) must be specified.
31
+ - Exactly one of O (zone) and O (zone_id) must be specified.
32
32
prune:
33
33
description:
34
- - If set to C (true), will remove all existing records in the zone that are not listed in I (records).
34
+ - If set to V (true), will remove all existing records in the zone that are not listed in O (records).
35
35
type: bool
36
36
default: false
37
37
records:
@@ -44,15 +44,15 @@ class ModuleDocFragment(object):
44
44
record:
45
45
description:
46
46
- The full DNS record to create or delete.
47
- - Exactly one of I (record) and I (prefix) must be specified.
47
+ - Exactly one of O (record) and O (prefix) must be specified.
48
48
type: str
49
49
prefix:
50
50
description:
51
51
- The prefix of the DNS record.
52
- - This is the part of I (record) before I (zone). For example, if the record to be modified is C (www.example.com)
53
- for the zone C (example.com), the prefix is C (www). If the record in this example would be C (example.com), the
54
- prefix would be C ('') (empty string).
55
- - Exactly one of I (record) and I (prefix) must be specified.
52
+ - This is the part of O (record) before O (zone). For example, if the record to be modified is V (www.example.com)
53
+ for the zone V (example.com), the prefix is V (www). If the record in this example would be V (example.com), the
54
+ prefix would be V ('') (empty string).
55
+ - Exactly one of O (record) and O (prefix) must be specified.
56
56
type: str
57
57
ttl:
58
58
description:
@@ -71,13 +71,13 @@ class ModuleDocFragment(object):
71
71
- YAML lists or multiple comma-spaced values are allowed.
72
72
- When deleting a record all values for the record must be specified or it will
73
73
not be deleted.
74
- - Must be specified if I (ignore=false).
74
+ - Must be specified if O (ignore=false).
75
75
type: list
76
76
elements: str
77
77
ignore:
78
78
description:
79
- - If set to C (true), I (value) will be ignored.
80
- - This is useful when I (prune=true), but you do not want certain entries to be removed
79
+ - If set to V (true), O (value) will be ignored.
80
+ - This is useful when O (prune=true), but you do not want certain entries to be removed
81
81
without having to know their current value.
82
82
type: bool
83
83
default: false
0 commit comments