Add missing state parameter
This commit is contained in:
parent
5983373f29
commit
1b5b1cbfe8
2 changed files with 2 additions and 0 deletions
|
@ -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()
|
||||
|
|
|
@ -173,6 +173,7 @@ def main():
|
|||
allocation_pool_start=dict(default=None),
|
||||
allocation_pool_end=dict(default=None),
|
||||
host_routes=dict(default=None, type='list'),
|
||||
state=dict(default='present', choices=['absent', 'present']),
|
||||
)
|
||||
|
||||
module_kwargs = openstack_module_kwargs()
|
||||
|
|
Loading…
Reference in a new issue