We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9416330 commit 14838f4Copy full SHA for 14838f4
plugins/modules/netbox_region.py
@@ -89,20 +89,20 @@
89
hosts: localhost
90
gather_facts: False
91
tasks:
92
- - name: Create tenant within Netbox with only required information
93
- netbox_region:
+ - name: Create region within Netbox with only required information
+ netbox.netbox.netbox_region:
94
netbox_url: http://netbox.local
95
netbox_token: thisIsMyToken
96
data:
97
name: "Test Region One"
98
state: present
99
100
- - name: Delete tenant within netbox
101
+ - name: Delete region within netbox
102
103
104
105
- name: Tenant Group ABC
+ name: "Test Region One"
106
state: absent
107
"""
108
0 commit comments