Add missing state parameter

This commit is contained in:
Monty Taylor 2015-06-04 12:08:27 -04:00 committed by Matt Clay
commit 0bc85d461b
2 changed files with 259 additions and 0 deletions

View file

@ -66,6 +66,7 @@ def main():
name=dict(required=True),
shared=dict(default=False, type='bool'),
admin_state_up=dict(default=True, type='bool'),
state=dict(default='present', choices=['absent', 'present']),
)
module_kwargs = openstack_module_kwargs()