]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Ignore the unimplemented properties of IAM::User
authorAngus Salkeld <asalkeld@redhat.com>
Fri, 22 Jun 2012 04:41:20 +0000 (14:41 +1000)
committerAngus Salkeld <asalkeld@redhat.com>
Fri, 22 Jun 2012 04:41:20 +0000 (14:41 +1000)
They are in lots of templates, and this is going to get
irritating fast.

Change-Id: I42cb5e5d0e8496028a70d6bed8477a0c864a09e7
Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
heat/engine/user.py

index 0c2a252b69108996ee079324c2240efb199985ac..5e14eaaa136b669a11f965fe781eff209fb299b2 100644 (file)
@@ -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)