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)