<aside> 💡 Following the two simple following steps (10min), you’ll be able to connect continuously your AWS Usage data to the Greenly’s platform and then leverage an interactive dashboard to know where you stand at any time of the year. Please note this tutorial is for the expert analysis module. For the standard AWS module, every step is document on the Greenly platform.

</aside>

<aside> 💡 Requirements: - An External ID provided by your dedicated Greenly’s Climate Expert

</aside>

STEP 1 - Create IAM policy

  1. Open the Amazon IAM console.

  2. Go to Access management > Policies

Untitled

  1. Click Create policy

Untitled

  1. In the Create policy window, go to the JSON tab.

Untitled

  1. Copy the following policy (which will only give access to the Cost Explorer API) and paste it in the JSON tab, and then click Next: Tags then Next: Review.
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "ce:GetCostAndUsage"
      ],
      "Resource": [
        "*"
      ]
    }
  ]
}

Note : This means Greenly will have no other permission than simply reading and retrieving your billing data, on which the cloud study relies.

See more information about cost explorer here.

  1. In the Review policy window, enter the policy name “CostExplorerAccess”.

Untitled

  1. Click Create policy.