Skip to content

Instantly share code, notes, and snippets.

@brandongalbraith
Created September 16, 2020 19:33
Show Gist options
  • Save brandongalbraith/cd166b47707788801eb841b575f66284 to your computer and use it in GitHub Desktop.
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
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.
{
"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