Skip to content

Commit 14838f4

Browse files
committed
netbox_region - Correct examples
1 parent 9416330 commit 14838f4

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
@@ -89,20 +89,20 @@
8989
hosts: localhost
9090
gather_facts: False
9191
tasks:
92-
- name: Create tenant within Netbox with only required information
93-
netbox_region:
92+
- name: Create region within Netbox with only required information
93+
netbox.netbox.netbox_region:
9494
netbox_url: http://netbox.local
9595
netbox_token: thisIsMyToken
9696
data:
9797
name: "Test Region One"
9898
state: present
9999
100-
- name: Delete tenant within netbox
101-
netbox_region:
100+
- name: Delete region within netbox
101+
netbox.netbox.netbox_region:
102102
netbox_url: http://netbox.local
103103
netbox_token: thisIsMyToken
104104
data:
105-
name: Tenant Group ABC
105+
name: "Test Region One"
106106
state: absent
107107
"""
108108

0 commit comments

Comments
 (0)