1
0
Fork 0
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:
René Moser 2018-05-21 17:16:44 +02:00 committed by GitHub
parent 483df13626
commit 516e18f4b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)