AWS IAM Policy for Billing Access
This snippet defines an AWS IAM policy that allows users to view billing information and account details. It includes permissions for accessing billing, payment methods, and cost usage.{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "aws-portal:ViewBilling", "aws-portal:ViewPaymentMethods", "aws-portal:ViewAccount", "ce:GetCostAndUsage" ], "Resource": "*" } ] }
Leave a Comment