summaryrefslogtreecommitdiff
path: root/heat/engine/resources/openstack/heat/none_resource.py
diff options
context:
space:
mode:
Diffstat (limited to 'heat/engine/resources/openstack/heat/none_resource.py')
-rw-r--r--heat/engine/resources/openstack/heat/none_resource.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/heat/engine/resources/openstack/heat/none_resource.py b/heat/engine/resources/openstack/heat/none_resource.py
index 1c97dea77..8932344eb 100644
--- a/heat/engine/resources/openstack/heat/none_resource.py
+++ b/heat/engine/resources/openstack/heat/none_resource.py
@@ -38,6 +38,10 @@ class NoneResource(resource.Resource):
prev_resource, check_init_complete=True):
return False
+ def frozen_definition(self):
+ return self.t.freeze(
+ properties=properties.Properties(schema={}, data={}))
+
def reparse(self, client_resolve=True):
self.properties = properties.Properties(schema={}, data={})
self.translate_properties(self.properties, client_resolve)