Skip to content

Commit 089bd33

Browse files
authored
Merge pull request #548 from andybro19/region-examples
Documentation: netbox_region - Correct examples
2 parents a7cb32f + 14838f4 commit 089bd33

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plugins/modules/netbox_region.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,20 +94,20 @@
9494
hosts: localhost
9595
gather_facts: False
9696
tasks:
97-
- name: Create tenant within Netbox with only required information
98-
netbox_region:
97+
- name: Create region within Netbox with only required information
98+
netbox.netbox.netbox_region:
9999
netbox_url: http://netbox.local
100100
netbox_token: thisIsMyToken
101101
data:
102102
name: "Test Region One"
103103
state: present
104104
105-
- name: Delete tenant within netbox
106-
netbox_region:
105+
- name: Delete region within netbox
106+
netbox.netbox.netbox_region:
107107
netbox_url: http://netbox.local
108108
netbox_token: thisIsMyToken
109109
data:
110-
name: Tenant Group ABC
110+
name: "Test Region One"
111111
state: absent
112112
"""
113113

0 commit comments

Comments
 (0)