Skip to content

Commit f7dec21

Browse files
StevenH1901cmeissner
authored andcommitted
list_order type should be int, not bool
1 parent 340c0f9 commit f7dec21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/modules/section.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def main():
126126
permissions=dict(type='json', required=False, default=None),
127127
strict_mode=dict(type='bool', required=False),
128128
subnet_ordering=dict(type='bool', required=False, phpipam_name='subnetOrdering'),
129-
list_order=dict(type='bool', required=False, phpipam_name='order'),
129+
list_order=dict(type='int', required=False, phpipam_name='order'),
130130
show_vlan=dict(type='bool', required=False, phpipam_name='showVLAN'),
131131
show_vrf=dict(type='bool', required=False, phpipam_name='showVRF'),
132132
show_supernets_only=dict(type='bool', required=False, phpipam_name='showSupernetOnly'),

0 commit comments

Comments
 (0)