-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathkubecost-single-account-permissions.yaml
More file actions
113 lines (107 loc) · 2.94 KB
/
Copy pathkubecost-single-account-permissions.yaml
File metadata and controls
113 lines (107 loc) · 2.94 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
AWSTemplateFormatVersion: '2010-09-09'
Description: Kubecost Management Account Template
Parameters:
S3CURBucket:
Description: The bucket created to receive CUR data upon CUR creation.
Type: String
SpotDataFeedBucketName:
Description: Optional. The bucket created to receive spot data feed.
Type: String
Conditions:
HasSpotFeedBucketName: !Not [ !Equals [ !Ref SpotDataFeedBucketName, "" ] ]
Resources:
KubecostUser:
Type: 'AWS::IAM::User'
Properties:
UserName: 'KubecostUser'
KubecostRole:
Type: 'AWS::IAM::Role'
Properties:
RoleName: 'KubecostRole'
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- 'ec2.amazonaws.com'
Action:
- 'sts:AssumeRole'
SpotFeedPolicy:
Type: 'AWS::IAM::Policy'
Condition: HasSpotFeedBucketName
Properties:
Users:
- !Ref KubecostUser
Roles:
- !Ref KubecostRole
PolicyName: 'kubecost-spot-data-feed-access'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: SpotDataAccess
Effect: Allow
Action:
- s3:ListAllMyBuckets
- s3:ListBucket
- s3:HeadBucket
- s3:HeadObject
- s3:List*
- s3:Get*
Resource: "*"
AthenaPolicy:
Type: 'AWS::IAM::Policy'
Properties:
Users:
- !Ref KubecostUser
Roles:
- !Ref KubecostRole
PolicyName: 'kubecost-athena-access'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: AthenaAccess
Effect: Allow
Action:
- athena:*
Resource:
- "*"
- Sid: ReadAccessToAthenaCurDataViaGlue
Effect: Allow
Action:
- glue:GetDatabase*
- glue:GetTable*
- glue:GetPartition*
- glue:GetUserDefinedFunction
- glue:BatchGetPartition
Resource:
- arn:aws:glue:*:*:catalog
- arn:aws:glue:*:*:database/athenacurcfn*
- arn:aws:glue:*:*:table/athenacurcfn*/*
- Sid: AthenaQueryResultsOutput
Effect: Allow
Action:
- s3:GetBucketLocation
- s3:GetObject
- s3:ListBucket
- s3:ListBucketMultipartUploads
- s3:ListMultipartUploadParts
- s3:AbortMultipartUpload
- s3:CreateBucket
- s3:PutObject
Resource:
- arn:aws:s3:::aws-athena-query-results-*
- Sid: S3ReadAccessToAwsBillingData
Effect: Allow
Action:
- s3:Get*
- s3:List*
Resource:
- !Sub 'arn:aws:s3:::${S3CURBucket}*'
- Sid: ReadAccessToAccountTags
Effect: Allow
Action:
- organizations:ListAccounts
- organizations:ListTagsForResource
Resource:
- "*"