Fix is_public type on os_image
Without this fix, the is_public value is a string and the shade call handling the module does not evaluate correctly when passing is_public: no
This commit is contained in:
parent
45076bddb9
commit
5d402f31c8
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ def main():
|
|||
owner = dict(default=None),
|
||||
min_disk = dict(type='int', default=0),
|
||||
min_ram = dict(type='int', default=0),
|
||||
is_public = dict(default=False),
|
||||
is_public = dict(type='bool', default=False),
|
||||
filename = dict(default=None),
|
||||
ramdisk = dict(default=None),
|
||||
kernel = dict(default=None),
|
||||
|
|
Loading…
Reference in a new issue