Skip to content

Commit ee9c1b8

Browse files
Feature: Added dns_name to arg_spec and documents for netbox_ip_address (#87)
1 parent 35fbd70 commit ee9c1b8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

plugins/modules/netbox_ip_address.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@
100100
nat_inside:
101101
description:
102102
- The inside IP address this IP is assigned to
103+
dns_name:
104+
description:
105+
- Hostname or FQDN
103106
tags:
104107
description:
105108
- Any tags that the IP address may need to be associated with
@@ -276,6 +279,7 @@ def main():
276279
interface=dict(required=False, type="raw"),
277280
description=dict(required=False, type="str"),
278281
nat_inside=dict(required=False, type="raw"),
282+
dns_name=dict(required=False, type="str"),
279283
tags=dict(required=False, type=list),
280284
custom_fields=dict(required=False, type=dict),
281285
),

0 commit comments

Comments
 (0)