aboutsummaryrefslogtreecommitdiffstats
path: root/generic-user.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'generic-user.yaml')
-rw-r--r--generic-user.yaml24
1 files changed, 24 insertions, 0 deletions
diff --git a/generic-user.yaml b/generic-user.yaml
new file mode 100644
index 00000000..ce6b84b8
--- /dev/null
+++ b/generic-user.yaml
@@ -0,0 +1,24 @@
+HeatTemplateFormatVersion: '2012-12-12'
+Description: 'HEAT Template - Heat Engine and API'
+Parameters:
+ AllowedResources:
+ Type: list
+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 ]