From: Angus Salkeld Date: Fri, 22 Jun 2012 04:41:20 +0000 (+1000) Subject: Ignore the unimplemented properties of IAM::User X-Git-Tag: 2014.1~1686 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=60c6bb5319e167413c640f472bacd989b44f6882;p=openstack-build%2Fheat-build.git Ignore the unimplemented properties of IAM::User They are in lots of templates, and this is going to get irritating fast. Change-Id: I42cb5e5d0e8496028a70d6bed8477a0c864a09e7 Signed-off-by: Angus Salkeld --- diff --git a/heat/engine/user.py b/heat/engine/user.py index 0c2a252b..5e14eaaa 100644 --- a/heat/engine/user.py +++ b/heat/engine/user.py @@ -34,13 +34,10 @@ class DummyId: class User(Resource): - properties_schema = {'Path': {'Type': 'String', - 'Implemented': False}, - 'Groups': {'Type': 'CommaDelimitedList', - 'Implemented': False}, + properties_schema = {'Path': {'Type': 'String'}, + 'Groups': {'Type': 'CommaDelimitedList'}, 'LoginProfile': {'Type': 'List'}, - 'Policies': {'Type': 'List', - 'Implemented': False}} + 'Policies': {'Type': 'List'}} def __init__(self, name, json_snippet, stack): super(User, self).__init__(name, json_snippet, stack)