Update cs_volume module to fix typo on force attribute (#2592)
fixes #2590
This commit is contained in:
parent
fd235289dd
commit
38d364103d
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ class AnsibleCloudStackVolume(AnsibleCloudStack):
|
|||
volume = self.get_volume()
|
||||
|
||||
if volume:
|
||||
if 'attached' in volume and not self.module.param.get('force'):
|
||||
if 'attached' in volume and not self.module.params.get('force'):
|
||||
self.module.fail_json(msg="Volume '%s' is attached, use force=true for detaching and removing the volume." % volume.get('name'))
|
||||
|
||||
self.result['changed'] = True
|
||||
|
|
Loading…
Reference in a new issue