mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 19:31:26 -07:00
cloudstack: cs_instance: fix missing resource error in check mode if instance is not yet present
This commit is contained in:
parent
01b36130a8
commit
7806d3d134
1 changed files with 4 additions and 2 deletions
|
@ -485,8 +485,10 @@ class AnsibleCloudStackInstance(AnsibleCloudStack):
|
||||||
instance = self.deploy_instance()
|
instance = self.deploy_instance()
|
||||||
else:
|
else:
|
||||||
instance = self.update_instance(instance)
|
instance = self.update_instance(instance)
|
||||||
|
|
||||||
instance = self.ensure_tags(resource=instance, resource_type='UserVm')
|
# In check mode, we do not necessarely have an instance
|
||||||
|
if instance:
|
||||||
|
instance = self.ensure_tags(resource=instance, resource_type='UserVm')
|
||||||
|
|
||||||
return instance
|
return instance
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue