Skip to content

Commit

Permalink
Fix ansible-test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonking3 committed May 2, 2024
1 parent 6e755aa commit a40670b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion plugins/modules/cml_lab.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@
description: Default interface mappings to apply to all devices
required: true
type: dict
node_definitions:
description: List of node definitions configured in CML
required: true
type: list
elements: dict
ext_conn:
description: Whether to add external connectors to lab
required: false
Expand Down Expand Up @@ -556,7 +561,7 @@ def main():
devices=dict(required=True, type='list', elements='dict'),
device_template=dict(required=True, type='dict'),
default_mappings=dict(required=True, type='dict'),
node_definitions=dict(required=True, type='list'),
node_definitions=dict(required=True, type='list', elements='dict'),
ext_conn=dict(required=False, type='bool', default=True),
start_from=dict(required=False, type='int', default=2),
)
Expand Down

0 comments on commit a40670b

Please sign in to comment.