mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Define external_ids ’type' in openvswitch_bridge (#2523)
The external_ids 'type' was not defined in the argument spec of openvswitch_bridge. This caused 'external_ids' to be converted to a string leading to an error when later calling exp_external_ids.items().
This commit is contained in:
parent
ec8a6abd64
commit
5cdc905cab
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ def main():
|
|||
'bridge': {'required': True},
|
||||
'state': {'default': 'present', 'choices': ['present', 'absent']},
|
||||
'timeout': {'default': 5, 'type': 'int'},
|
||||
'external_ids': {'default': None},
|
||||
'external_ids': {'default': None, 'type': 'dict'},
|
||||
'fail_mode': {'default': None},
|
||||
},
|
||||
supports_check_mode=True,
|
||||
|
|
Loading…
Reference in a new issue