In 2025, sustainability reporting has shifted from "voluntary" to "regulatory" (CSRD in Europe, SEC rules in the US). For IT leaders, the biggest headache is Scope 3 Emissions.
Scope 1: Direct emissions (burning fuel).
Scope 2: Indirect emissions (electricity purchased).
Scope 3: Supply chain emissions—specifically, the Embodied Carbon of the servers, chips, and racks you rent from AWS/Azure/GCP.
Most cloud providers give you good data on Scope 1 & 2. They are notoriously vague on Scope 3. Here is how to close the gap.
The Challenge of Embodied Carbon
When you spin up an h100.super instance, you aren't just consuming electricity. You are "renting" a slice of a piece of hardware that required massive energy to mine, manufacture, and ship. GreenOps dictates that this manufacturing cost must be amortized over the life of the server and assigned to your usage.
The Tool: Cloud Carbon Footprint (CCF)
Cloud Carbon Footprint (CCF) is the industry-standard open-source tool for this calculation. It connects to your billing data (AWS Cost & Usage Report, Azure Exports) and enriches it with coefficients.
How it works:
Identifies the processor (e.g., Intel Skylake).
Lookups the manufacturing carbon profile of that chip (e.g., 1200 kg CO2e).
Applies an amortization factor (e.g., 4-year lifespan).
Allocates a portion of that carbon to you based on the hours you rented the VM.
FOCUS 1.2: Standardizing the Green Bill
The new FOCUS 1.2 billing specification is a game changer for Scope 3. It includes reserved columns for carbon data.
The Future: Instead of guessing, you will ingest a FOCUS-compatible CSV where AWS/Google populate the
x_CarbonEmissioncolumn directly.The Unlock: This allows you to query carbon alongside cost in BigQuery or Snowflake:
SQL
SELECT
ServiceCategory,
SUM(BilledCost) as FinancialCost,
SUM(x_CarbonScope3) as EmbodiedCarbon
FROM focus_billing
GROUP BY 1
ORDER BY 3 DESC;
Action Plan for Sustainability Leads
Deploy CCF: Run it against your historical data to establish a baseline.
Extend Useful Life: If you manage on-prem hardware, extending server lifecycles from 3 years to 5 years reduces annualized Scope 3 emissions by 40%.
Right-size: Scope 3 is based on hardware allocation, not just usage. Deleting idle resources prevents you from "renting" embodied carbon you aren't using.
Verdict: You cannot optimize what you cannot measure. Tools like CCF and standards like FOCUS 1.2 finally give us the ruler we need to measure the true environmental cost of our digital infrastructure.
All in One Place
Atler Pilot decodes your cloud spend story by bringing monitoring, automation, and intelligent insights together for faster and better cloud operations.

