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().
pull/18777/head
Blake Covarrubias 8 years ago committed by Matt Clay
parent ec8a6abd64
commit 5cdc905cab

@ -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…
Cancel
Save