From b1802fe7ab0458ca381fbc5214cbf27918bafd9c Mon Sep 17 00:00:00 2001 From: Tomas Sedovic Date: Thu, 19 Apr 2012 18:23:56 +0200 Subject: [PATCH] Fix the EIP cleanup Fixes #69 Signed-off-by: Tomas Sedovic --- heat/engine/resources.py | 1 - 1 file changed, 1 deletion(-) diff --git a/heat/engine/resources.py b/heat/engine/resources.py index 7036ca27..afc1d31b 100644 --- a/heat/engine/resources.py +++ b/heat/engine/resources.py @@ -283,7 +283,6 @@ class SecurityGroup(Resource): class ElasticIp(Resource): def __init__(self, name, json_snippet, stack): super(ElasticIp, self).__init__(name, json_snippet, stack) - self.instance_id = '' self.ipaddress = '' if 'Domain' in self.t['Properties']: -- 2.45.2