From abe0bbd5e1958e03375db644dd20ed1da176a91f Mon Sep 17 00:00:00 2001 From: Darren Worrall Date: Mon, 10 Aug 2015 20:59:28 +0100 Subject: [PATCH] Param fixes to associateIpAddress --- cloud/cloudstack/cs_ip_address.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cloud/cloudstack/cs_ip_address.py b/cloud/cloudstack/cs_ip_address.py index d3513b651ed..1228c7aa46a 100644 --- a/cloud/cloudstack/cs_ip_address.py +++ b/cloud/cloudstack/cs_ip_address.py @@ -173,7 +173,9 @@ class AnsibleCloudStackIPAddress(AnsibleCloudStack): def associate_ip_address(self): self.result['changed'] = True args = {} - args['account'] = self.get_account(key='id') + args['account'] = self.get_account(key='name') + args['domainid'] = self.get_domain(key='id') + args['projectid'] = self.get_project(key='id') args['networkid'] = self.get_network(key='id') args['zoneid'] = self.get_zone(key='id') ip_address = {}