cloudstack_ssh: fix missing projectid if state=absent
This commit is contained in:
parent
60467738ed
commit
82e25447ad
1 changed files with 1 additions and 0 deletions
|
@ -139,6 +139,7 @@ class AnsibleCloudStackSshKey(AnsibleCloudStack):
|
|||
self.result['changed'] = True
|
||||
args = {}
|
||||
args['name'] = self.module.params.get('name')
|
||||
args['projectid'] = self.get_project_id()
|
||||
if not self.module.check_mode:
|
||||
res = self.cs.deleteSSHKeyPair(**args)
|
||||
return ssh_key
|
||||
|
|
Loading…
Reference in a new issue