From 942f0ce96ca96a60af80dcb01d5b12215d01f428 Mon Sep 17 00:00:00 2001 From: Robert Estelle Date: Sun, 14 Jun 2015 15:53:56 -0400 Subject: [PATCH] Fix missing instance_id param in ec2_eip. --- cloud/amazon/ec2_eip.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud/amazon/ec2_eip.py b/cloud/amazon/ec2_eip.py index 2f358d13622..b24032b8d4e 100644 --- a/cloud/amazon/ec2_eip.py +++ b/cloud/amazon/ec2_eip.py @@ -228,7 +228,7 @@ def ensure_present(ec2, domain, address, instance_id, return {'changed': changed, 'public_ip': address.public_ip} -def ensure_absent(ec2, domain, address, check_mode): +def ensure_absent(ec2, domain, address, instance_id, check_mode): if not address: return {'changed': False} @@ -279,7 +279,7 @@ def main(): reuse_existing_ip_allowed, module.check_mode) else: - result = ensure_absent(ec2, domain, address, module.check_mode) + result = ensure_absent(ec2, domain, address, instance_id, module.check_mode) except (boto.exception.EC2ResponseError, EIPException) as e: module.fail_json(msg=str(e))