-
Notifications
You must be signed in to change notification settings - Fork 7
/
billing-policy.json
82 lines (82 loc) · 2.95 KB
/
billing-policy.json
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
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowS3CURBucketAccess",
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::CUR_BUCKET_NAME/*",
"arn:aws:s3:::CUR_BUCKET_NAME"
]
},
{
"Sid": "BillingDataAccess",
"Effect": "Allow",
"Action": [
"account:Get*",
"account:List*",
"billing:Get*",
"billing:List*",
"aws-portal:ViewUsage",
"aws-portal:ViewBilling",
"aws-portal:ViewAccount",
"aws-portal:ViewPaymentMethods",
"aws-portal:GetConsoleActionSetEnforced",
"budgets:View*",
"budgets:Describe*",
"bcm-data-exports:CreateExport",
"bcm-data-exports:Get*",
"bcm-data-exports:List*",
"bcm-data-exports:UpdateExport",
"billingconductor:Get*",
"billingconductor:List*",
"consolidatedbilling:GetAccountBillingRole",
"consolidatedbilling:ListLinkedAccounts",
"organizations:DescribeAccount",
"organizations:DescribeOrganization",
"organizations:DescribeOrganizationalUnit",
"organizations:ListAccounts",
"organizations:ListAccountsForParent",
"organizations:ListChildren",
"organizations:ListOrganizationalUnitsForParent",
"organizations:ListParents",
"cur:Describe*",
"cur:Get*",
"cur:ValidateReportDestination",
"cur:Put*",
"ce:*",
"invoicing:Get*",
"invoicing:List*",
"freetier:Get*",
"mapcredits:List*",
"payments:List*",
"payments:Get*",
"payments:GetPaymentInstrument",
"purchase-orders:Get*",
"purchase-orders:List*",
"purchase-orders:View*",
"pricing:*",
"tax:List*",
"tax:Get*",
"savingsplans:Describe*",
"savingsplans:List*",
"ec2:DescribeReservedInstance*",
"rds:DescribeReservedDBInstance*",
"elasticache:DescribeReservedCacheNode*",
"es:DescribeReservedInstance*",
"redshift:DescribeReservedNodes*",
"compute-optimizer:Export*",
"compute-optimizer:Get*",
"compute-optimizer:Describe*",
"cost-optimization-hub:Get*",
"cost-optimization-hub:List*",
"cost-optimization-hub:Update*"
],
"Resource": "*"
}
]
}