diff options
author | Clint Byrum <clint@fewbar.com> | 2013-05-06 21:50:09 -0700 |
---|---|---|
committer | Clint Byrum <clint@fewbar.com> | 2013-05-06 21:50:09 -0700 |
commit | edfbd862b3384795725beb4a01d6b0c8bf60430b (patch) | |
tree | 53524469d285df66e1f94f010ba631c40cd498da /generic-user.yaml | |
parent | 8be7b6b509afc3937f7d0656851d370f612b3860 (diff) |
Un-do all use of generic-user.yaml and remove it.
This was a rather experimental way to try and create some generic
templates in Heat. But the AllowedResources can only refer to resources
inside the template itself, so this is useless.
Diffstat (limited to 'generic-user.yaml')
-rw-r--r-- | generic-user.yaml | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/generic-user.yaml b/generic-user.yaml deleted file mode 100644 index a14f1c6c..00000000 --- a/generic-user.yaml +++ /dev/null @@ -1,24 +0,0 @@ -HeatTemplateFormatVersion: '2012-12-12' -Description: 'HEAT Template - Heat Engine and API' -Parameters: - AllowedResources: - Type: CommaDelimitedList -Resources: - AccessPolicy: - Type: OS::Heat::AccessPolicy - Properties: - AllowedResources: {Ref: AllowedResources} - User: - Type: AWS::IAM::User - Properties: - Policies: [ { Ref: AccessPolicy } ] - Key: - Type: AWS::IAM::AccessKey - Properties: - UserName: - Ref: User -Outputs: - AccessKeyId: - Ref: Key - SecretKey: - Fn::GetAtt: [ Key, SecretAccessKey ] |