From: Chris Alfonso Date: Tue, 22 May 2012 17:29:25 +0000 (-0400) Subject: Adding the AWS::IAM::User and AWS::IAM::AccessKey to the mapping X-Git-Tag: 2014.1~1802 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=d3c5d744b64af75ff8ac29689ad120d330f0c076;p=openstack-build%2Fheat-build.git Adding the AWS::IAM::User and AWS::IAM::AccessKey to the mapping --- diff --git a/heat/engine/parser.py b/heat/engine/parser.py index 6929a244..fd3c4ef2 100644 --- a/heat/engine/parser.py +++ b/heat/engine/parser.py @@ -41,6 +41,8 @@ logger = logging.getLogger(__file__) 'AWS::CloudFormation::WaitConditionHandle': wait_condition.WaitConditionHandle, 'AWS::CloudFormation::WaitCondition': wait_condition.WaitCondition, + 'AWS::IAM::User': user.User, + 'AWS::IAM::AccessKey': user.AccessKey, },)