Created
September 16, 2020 19:33
-
-
Save brandongalbraith/cd166b47707788801eb841b575f66284 to your computer and use it in GitHub Desktop.
Enable AWS Billing, Budget, Cost & Usage Reporting Read Only Access to IAM Users
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
First, read https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/control-access-billing.html to enable IAM users access to billing, | |
budget, and cost & usage reporting console. | |
Next, apply SelfService-AWSBillingReadOnly.json to the users you desire read only access to billing, budget, and cost information in the | |
AWS console. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"aws-portal:View*", | |
"budgets:View*", | |
"cur:Describe*", | |
"purchase-orders:View*" | |
], | |
"Resource": "*" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment