CLF-C02Chapter 50 of 130Objective 1.4

AWS Sustainability and Green Cloud

This chapter covers AWS sustainability and the 'green cloud'—how AWS helps customers reduce environmental impact while lowering costs. For the CLF-C02 exam, this falls under Cloud Concepts (Domain 1), Objective 1.4: 'Identify aspects of AWS Cloud economics.' Sustainability contributes to the value proposition of the cloud. Although it is a smaller objective by percentage, questions often appear as scenario-based, testing your understanding of shared responsibility, the AWS Global Infrastructure's efficiency, and specific tools like the AWS Customer Carbon Footprint Tool. Mastering this topic ensures you can articulate why cloud is greener than on-premises and which services support sustainability goals.

25 min read
Beginner
Updated May 31, 2026

The Efficient Fleet Manager Analogy

Imagine you manage a global delivery fleet. Traditionally, each regional office bought and maintained its own trucks, regardless of demand—some sat idle, others were overworked. Now, you switch to a centralized fleet manager. You only dispatch trucks when needed, choosing the most fuel-efficient vehicle for each route. The system automatically consolidates partial loads to minimize trips. When demand drops, trucks are returned to the depot and not fueled. This is exactly how AWS sustainability works. AWS builds hyper-efficient data centers (like the depot) using custom servers and cooling. You provision only the compute you need (like dispatching trucks). Services like Auto Scaling add or remove capacity automatically (like consolidating loads). AWS also optimizes hardware utilization, achieving far higher efficiency than any single company could. The result: you pay less and reduce carbon footprint, just as a centralized fleet reduces fuel waste. The mechanism is shared infrastructure and continuous optimization—the same reason ride-sharing is greener than everyone owning a car.

How It Actually Works

What is AWS Sustainability and the Green Cloud?

AWS sustainability refers to the company's commitment and practices to minimize the environmental impact of its cloud infrastructure, and the tools it provides to help customers reduce their own carbon footprint. The 'green cloud' concept means that using AWS can be more environmentally friendly than running your own data centers, because AWS achieves massive economies of scale in energy efficiency, renewable energy procurement, and hardware utilization.

The problem it solves: Traditional on-premises data centers often have low server utilization (typically 15-30% on average), meaning a lot of energy is wasted on idle servers. Additionally, many companies lack the resources to negotiate renewable energy contracts or implement advanced cooling techniques. AWS addresses this by building hyper-efficient data centers, using custom-designed servers, and investing in renewable energy. By 2025, AWS aims to be 100% powered by renewable energy (they were already at 85% in 2022).

How AWS Achieves Sustainability

AWS uses a multi-layered approach:

Infrastructure Efficiency: AWS designs its own server hardware, networking gear, and cooling systems. For example, they use liquid cooling for high-performance instances and free air cooling in cooler climates. This reduces power usage effectiveness (PUE)—a measure of how much energy is used for computing versus overhead. AWS data centers have a PUE as low as 1.1, compared to the industry average of 1.67.

Regional Selection: AWS builds data centers in regions with access to low-carbon energy sources. For instance, the AWS Europe (Ireland) Region benefits from wind power, while the US West (Oregon) Region uses hydroelectric power. When you choose a region, you indirectly influence your carbon footprint.

Shared Responsibility Model for Sustainability: AWS is responsible for the sustainability of the cloud (e.g., efficient data centers, renewable energy), while customers are responsible for sustainability in the cloud (e.g., optimizing resource usage, deleting unused data). This is analogous to the shared responsibility model for security.

Auto Scaling and Serverless: By using Auto Scaling, you match capacity to demand, avoiding idle resources. Serverless services like AWS Lambda automatically scale down to zero when not in use, eliminating waste. For example, a Lambda function that runs once per hour uses no resources in between, unlike a traditional server that runs 24/7.

Tools and Services for Sustainability

AWS Customer Carbon Footprint Tool: This tool provides a dashboard showing your estimated carbon emissions from AWS usage, broken down by service and region. It uses a methodology consistent with the Greenhouse Gas (GHG) Protocol. You can track progress over time and see the impact of migrating workloads to AWS.

AWS Well-Architected Framework – Sustainability Pillar: This is a set of design principles and best practices to help you build sustainable workloads. The five pillars are: Operational Excellence, Security, Reliability, Performance Efficiency, Cost Optimization, and Sustainability (added in 2021). The Sustainability Pillar focuses on:

Understand your impact (measure emissions)

Establish sustainability goals

Maximize utilization (right-size instances, use Auto Scaling)

Anticipate and adopt new, more efficient hardware (e.g., Graviton processors)

Use managed services (they are more efficient than self-managed)

Reduce the impact of downstream (e.g., minimize data transfer)

AWS Graviton Processors: These are ARM-based custom CPUs designed by AWS. They offer up to 40% better energy efficiency compared to equivalent x86 instances for certain workloads. Using Graviton-based instances (e.g., M6g, C6g, R6g) directly reduces energy consumption and carbon footprint.

Savings Plans and Reserved Instances: While primarily cost-saving tools, they also encourage long-term commitments, allowing AWS to plan capacity more efficiently and reduce waste. However, the primary sustainability benefit comes from using fewer resources overall, not just committing to them.

Comparison to On-Premises

On-premises data centers typically have:

Low server utilization (10-20%)

High PUE (1.5-2.0)

No access to large-scale renewable energy procurement

Higher embodied carbon (manufacturing servers that sit idle)

AWS offers:

High server utilization (often 50-80% due to multi-tenancy)

Low PUE (1.1-1.2)

Renewable energy procurement at scale

Efficient hardware lifecycle (servers are refreshed and recycled responsibly)

According to an AWS-commissioned study by 451 Research, AWS infrastructure is 3.6 times more energy efficient than the median of surveyed US enterprise data centers, and when you factor in renewable energy, AWS can reduce carbon emissions by up to 88% for typical workloads.

When to Use Sustainability Features

You should always consider sustainability because it aligns with cost optimization. However, specific scenarios:

When you need to report carbon emissions (e.g., for ESG compliance), use the Customer Carbon Footprint Tool.

When designing a new workload, review the Sustainability Pillar of the Well-Architected Framework.

For compute-intensive workloads (e.g., batch processing, video encoding), choose Graviton instances for better efficiency.

For variable traffic, use Auto Scaling or serverless to avoid overprovisioning.

Do not confuse sustainability with cost savings—they are correlated but not identical. A cheaper solution might not be greener if it involves transferring large amounts of data around the world.

Walk-Through

1

Accessing the Customer Carbon Footprint Tool

Log in to the AWS Management Console and search for 'Customer Carbon Footprint Tool'. This tool is available to all AWS accounts at no additional cost. It displays your estimated carbon emissions based on your usage data. The tool uses a methodology that accounts for the specific energy mix of each AWS region. You can view data by month, service, and region. It also shows your estimated emissions reduction compared to running the same workloads in a typical on-premises data center. This is the primary way to measure your cloud sustainability. Note: The tool provides estimates, not actual measurements, but it is the best available data for AWS customers.

2

Reviewing the Sustainability Pillar whitepaper

Download the AWS Well-Architected Framework Sustainability Pillar whitepaper from the AWS documentation site. This document outlines six design principles for sustainable workloads: Understand your impact, Establish sustainability goals, Maximize utilization, Anticipate and adopt new hardware, Use managed services, and Reduce downstream impact. For example, under 'Maximize utilization', you would implement Auto Scaling to match capacity to demand. The whitepaper also provides best practices for each principle, such as using lifecycle policies to delete old data and choosing regions with lower carbon intensity. This is essential reading for the CLF-C02 exam.

3

Implementing Auto Scaling for compute

When launching an EC2 instance, create an Auto Scaling group and define a scaling policy based on metrics like CPU utilization or request count. For example, you can set a target of 50% CPU utilization. AWS will automatically add or remove instances to maintain that target. This ensures you never run more instances than needed, reducing energy waste. Under the hood, Auto Scaling integrates with Elastic Load Balancing to distribute traffic. Remember to set minimum and maximum limits to avoid runaway scaling. This is a direct application of the 'Maximize utilization' principle.

4

Choosing Graviton-based instances

When launching an EC2 instance, select an instance type that uses the AWS Graviton processor. For example, choose t4g.small instead of t3.small. Graviton instances are available in the General Purpose (M6g), Compute Optimized (C6g), Memory Optimized (R6g), and other families. They offer up to 40% better energy efficiency for the same performance compared to x86 instances. However, ensure your software is compatible with the ARM architecture. Many open-source applications and AWS services (like Amazon Linux 2) already support Graviton. This is a simple switch that reduces your carbon footprint without code changes.

5

Setting up lifecycle policies for S3

In Amazon S3, create a lifecycle policy to transition objects to colder storage tiers (e.g., from S3 Standard to S3 Glacier) or delete them after a certain period. For example, move logs older than 30 days to S3 Glacier, and delete them after 365 days. This reduces storage energy consumption because colder tiers use less energy (e.g., Glacier uses tape libraries that are powered down when not in use). Also, deleting unnecessary data reduces the total storage footprint. Lifecycle policies are free to configure, but you pay for transitions and retrieval. This aligns with the 'Reduce downstream impact' principle.

What This Looks Like on the Job

Scenario 1: E-commerce Company Reducing Carbon Footprint

A mid-sized e-commerce company runs its web application on AWS. They want to reduce their carbon footprint to meet corporate sustainability goals. They start by using the Customer Carbon Footprint Tool to get a baseline. They discover that their EC2 instances are running 24/7 even though traffic drops at night. They implement Auto Scaling with a scheduled scaling policy to reduce instances during off-peak hours. They also switch their database from a large RDS instance to Aurora Serverless, which scales down to zero when not in use. Within three months, their estimated carbon emissions drop by 40%. The tool helps them track progress and report to stakeholders. The key lesson: right-sizing and scheduling are low-effort, high-impact changes.

Scenario 2: Media Company Using Graviton for Video Encoding

A media company processes thousands of video files daily for streaming. They use EC2 C5 instances (x86) for encoding. They learn about Graviton's energy efficiency and test their encoding pipeline on C6g instances. After confirming compatibility, they switch all their encoding jobs to C6g. They find that performance is comparable, but energy consumption decreases by 30%. Additionally, Graviton instances are 10-20% cheaper on-demand, so they save money too. They also implement Spot Instances for fault-tolerant encoding jobs, further reducing waste. This scenario shows that sustainability and cost optimization often go hand-in-hand.

Scenario 3: Startup Misunderstanding Sustainability

A startup decides to 'go green' by always choosing the cheapest region, assuming it is most sustainable. However, the cheapest region (e.g., us-east-1) may have a higher carbon intensity (coal-based power) than a slightly more expensive region (e.g., eu-west-1 with wind power). Their carbon footprint actually increases. They also overprovision EC2 instances 'just in case' to avoid downtime, leading to low utilization. They fail to use Auto Scaling because they think it's complex. Their carbon footprint is worse than on-premises. The lesson: sustainability requires deliberate actions like using the right tools and regions, not just cost minimization. Misconfigurations can negate the benefits of cloud.

How CLF-C02 Actually Tests This

What CLF-C02 Tests on Sustainability

The exam tests your understanding of the shared responsibility model for sustainability, the benefits of the AWS Global Infrastructure, and specific tools like the Customer Carbon Footprint Tool. Questions are typically scenario-based: 'A company wants to reduce its carbon footprint. Which AWS service or practice should they use?' Domain 1 (Cloud Concepts) includes this objective. Expect 2-3 questions on this topic.

Common Wrong Answers and Why

1.

'AWS handles all sustainability, so the customer doesn't need to do anything.' This is wrong because sustainability follows the shared responsibility model. AWS is responsible for the sustainability *of* the cloud (efficient data centers, renewable energy), but customers are responsible for sustainability *in* the cloud (optimizing resource usage, deleting unused data). Many candidates pick this because they confuse sustainability with security's shared responsibility.

2.

'Use the AWS Pricing Calculator to measure carbon footprint.' The Pricing Calculator estimates cost, not carbon. The correct tool is the Customer Carbon Footprint Tool. Candidates confuse these because both are calculators.

3.

'Choose the lowest-cost region to minimize carbon emissions.' Cost and carbon are not perfectly correlated. A low-cost region may use coal power, while a slightly more expensive region uses renewables. The exam tests that you should consider the region's energy mix.

4.

'Use Reserved Instances to reduce carbon footprint.' Reserved Instances primarily reduce cost, not energy consumption. They may encourage long-term commitments but do not directly reduce resource usage. Auto Scaling and serverless are better for reducing waste.

Specific Terms and Values

AWS Customer Carbon Footprint Tool (exact name)

Sustainability Pillar of the Well-Architected Framework

Graviton processors (ARM-based, up to 40% more energy efficient)

Power Usage Effectiveness (PUE): AWS targets 1.1-1.2 vs industry average 1.67

88% carbon reduction potential (from 451 Research study)

3.6 times more energy efficient (from same study)

Tricky Distinctions

Customer Carbon Footprint Tool vs. AWS Pricing Calculator: One measures carbon, the other cost.

Sustainability Pillar vs. Cost Optimization Pillar: They overlap but are distinct. Sustainability focuses on energy and emissions, while cost focuses on financial efficiency.

Graviton vs. x86: Graviton is more energy efficient but may not support all software.

Decision Rule for Multiple Choice

If a question asks about reducing carbon footprint, look for answers involving:

Auto Scaling / serverless (reduce waste)

Customer Carbon Footprint Tool (measure)

Graviton instances (efficiency)

Region selection with low carbon intensity

Lifecycle policies (delete unused data)

Eliminate answers that focus only on cost, security, or performance without mentioning energy or carbon.

Key Takeaways

AWS sustainability follows a shared responsibility model: AWS secures the cloud (efficient data centers, renewable energy), customers are responsible for sustainability in the cloud (optimizing resource usage).

The AWS Customer Carbon Footprint Tool provides estimated carbon emissions per service and region, helping you track and reduce your footprint.

AWS Graviton processors (ARM-based) offer up to 40% better energy efficiency compared to x86 instances for compatible workloads.

The Sustainability Pillar of the Well-Architected Framework includes principles like maximize utilization, use managed services, and reduce downstream impact.

Auto Scaling and serverless services (e.g., Lambda, Aurora Serverless) reduce energy waste by matching capacity to demand and scaling to zero.

AWS data centers achieve a Power Usage Effectiveness (PUE) as low as 1.1, compared to the industry average of 1.67.

According to a 451 Research study, AWS infrastructure is 3.6 times more energy efficient than the median of surveyed US enterprise data centers, and can reduce carbon emissions by up to 88% when factoring in renewable energy.

Easy to Mix Up

These come up on the exam all the time. Here's how to tell them apart.

Customer Carbon Footprint Tool

Measures estimated carbon emissions

Uses regional energy mix data

Free to use, available in console

Helps track sustainability goals

Provides comparison to on-premises

AWS Pricing Calculator

Estimates cost of AWS services

Uses pricing data, not energy data

Free to use, web-based

Helps with budgeting and cost planning

Does not consider environmental impact

Watch Out for These

Mistake

Cloud is always greener than on-premises, no matter how you use it.

Correct

Cloud can be greener, but only if you optimize your usage. Overprovisioning, leaving resources running 24/7, and choosing regions with high carbon intensity can make cloud worse than an efficient on-premises data center. AWS provides tools to help, but the customer must use them.

Mistake

AWS is 100% renewable energy today.

Correct

AWS aims to be 100% renewable by 2025. As of 2022, they were at 85%. They are not there yet. The exam may state that AWS is on a path to 100% renewable energy, not that it has already achieved it.

Mistake

The Customer Carbon Footprint Tool shows exact emissions measured by sensors.

Correct

The tool provides estimates based on usage data and regional energy mix. It does not measure actual emissions from your specific workloads. It uses a methodology consistent with the GHG Protocol.

Mistake

Reserved Instances are a sustainability best practice.

Correct

Reserved Instances are a cost optimization tool. They do not directly reduce energy consumption. In fact, they may encourage you to keep instances running longer, potentially increasing waste if not combined with right-sizing. Auto Scaling and serverless are better for sustainability.

Mistake

All AWS regions have the same carbon intensity.

Correct

Carbon intensity varies by region based on the local energy grid. For example, us-east-1 has higher carbon intensity due to coal power, while eu-west-1 has lower intensity due to wind power. Choosing a region with low carbon intensity is a sustainability best practice.

Frequently Asked Questions

How does AWS measure and report its carbon footprint?

AWS publishes an annual sustainability report detailing its carbon footprint, energy use, and renewable energy procurement. For customers, the AWS Customer Carbon Footprint Tool provides estimated emissions based on usage. AWS uses a methodology consistent with the Greenhouse Gas (GHG) Protocol, covering Scope 1 (direct), Scope 2 (indirect from energy), and Scope 3 (supply chain) emissions. The tool estimates your share of AWS's total emissions based on your resource consumption. This is not real-time measurement but a reliable estimate. Exam tip: Know that the tool is for customers to see their estimated carbon footprint.

What is the difference between sustainability and cost optimization in AWS?

Sustainability focuses on reducing environmental impact (energy, carbon), while cost optimization focuses on reducing financial spend. They often align because using fewer resources saves both money and energy. However, they can conflict: for example, using Reserved Instances saves cost but may encourage running instances longer, increasing energy use. The Sustainability Pillar of the Well-Architected Framework is separate from the Cost Optimization Pillar. On the exam, distinguish between tools like the Customer Carbon Footprint Tool (sustainability) and AWS Cost Explorer (cost).

Can I use AWS Graviton instances for any workload?

Not all workloads are compatible with Graviton because it uses an ARM architecture. You need to ensure your operating system, runtime, and applications are compiled for ARM. AWS provides Amazon Linux 2 with ARM support, and many open-source projects (e.g., Node.js, Python, Java) have ARM versions. However, some proprietary software may not be available. Always test your workload on Graviton before migrating. The exam may present a scenario where a customer wants to reduce energy consumption; Graviton is a valid option if compatibility is confirmed.

How does Auto Scaling help with sustainability?

Auto Scaling automatically adjusts the number of EC2 instances based on demand. This prevents overprovisioning (running more instances than needed) and underprovisioning. By matching capacity to demand, you avoid wasting energy on idle instances. For example, a web application might need 10 instances during the day but only 2 at night. Without Auto Scaling, you might run 10 instances 24/7, wasting energy. Auto Scaling can scale down to 2 at night, reducing energy consumption by 80% during off-peak hours. This is a key sustainability best practice.

What is Power Usage Effectiveness (PUE) and why is it important?

PUE is a metric that measures data center energy efficiency. It is calculated as total energy consumed by the data center divided by energy consumed by IT equipment. A lower PUE means more energy is used for computing rather than cooling, lighting, etc. AWS data centers have a PUE of about 1.1-1.2, meaning only 10-20% overhead. The industry average is 1.67, meaning 67% overhead. This efficiency is achieved through advanced cooling, custom hardware, and optimized layouts. On the exam, you may see a question comparing AWS PUE to on-premises.

Does AWS offer any certifications for sustainability?

AWS itself is certified under various environmental standards, such as ISO 14001 (environmental management) and ISO 50001 (energy management). For customers, there is no specific AWS certification for sustainability, but the AWS Well-Architected Framework Sustainability Pillar provides best practices. The exam does not require knowledge of specific certifications, but you should know that AWS complies with environmental standards.

Can I use the AWS Customer Carbon Footprint Tool for free?

Yes, the AWS Customer Carbon Footprint Tool is available to all AWS customers at no additional cost. It is accessible from the AWS Management Console. There is no charge for viewing the dashboard or exporting reports. However, you must have an AWS account with usage data. The tool does not require any setup or configuration. This is a key point: the tool is free and easy to use.

Terms Worth Knowing

Ready to put this to the test?

You've just covered AWS Sustainability and Green Cloud — now see how well it sticks with free CLF-C02 practice questions. Full explanations included, no account needed.

Done with this chapter?