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.
 avatar
user_0659028
json
25 days ago
303 B
2
Indexable
{ 
  "Version": "2012-10-17", 
  "Statement": [ 
    { 
      "Effect": "Allow", 
      "Action": [ 
        "aws-portal:ViewBilling", 
        "aws-portal:ViewPaymentMethods", 
        "aws-portal:ViewAccount", 
        "ce:GetCostAndUsage" 
      ], 
      "Resource": "*" 
    } 
  ] 
}
Leave a Comment