mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
cloudstack: fix query tags by resourceid (#40482)
This commit is contained in:
parent
483df13626
commit
516e18f4b8
1 changed files with 1 additions and 1 deletions
|
@ -546,7 +546,7 @@ class AnsibleCloudStack:
|
|||
|
||||
def query_tags(self, resource, resource_type):
|
||||
args = {
|
||||
'resourceids': resource['id'],
|
||||
'resourceid': resource['id'],
|
||||
'resourcetype': resource_type,
|
||||
}
|
||||
tags = self.query_api('listTags', **args)
|
||||
|
|
Loading…
Reference in a new issue