From 60c6bb5319e167413c640f472bacd989b44f6882 Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Fri, 22 Jun 2012 14:41:20 +1000 Subject: [PATCH] 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 --- heat/engine/user.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/heat/engine/user.py b/heat/engine/user.py index 0c2a252b69..5e14eaaa13 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)