forked from LeanerCloud/savings-estimator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yaml
29 lines (29 loc) · 813 Bytes
/
template.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Type: AWS::IAM::Role
Properties:
RoleName: SavingsEstimatorIAMRole
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- ec2.amazonaws.com
Action:
- sts:AssumeRole
Path: "/"
Policies:
- PolicyName: SavingsEstimatorIAMRolePolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- autoscaling:CreateOrUpdateTags
- autoscaling:DescribeAutoScalingGroups
- ec2:DescribeImages
- ec2:DescribeInstances
Resource: '*'
Outputs:
SavingsEstimatorIAMRoleArn:
Description: The ARN of the SavingsEstimatorIAMRole IAM role
Value: !GetAtt SavingsEstimatorIAMRole.Arn