- 최신
- 최다 투표
- 가장 많은 댓글
Thank you for providing detailed information about your AWS usage situation. I understand your concern about unexpected usage increases despite having no running instances. Let me explain what's likely happening and provide some guidance.
Even when an EC2 instance is stopped, certain associated resources continue to consume your Free Tier allocation or potentially incur charges. The main culprit in your case is likely the Elastic Block Store (EBS) volume attached to your stopped EC2 instance.
EBS volumes, which act as the virtual hard disk for your EC2 instance, continue to exist and consume storage even when the instance is stopped. This means you're still using up your Free Tier storage allocation, which is typically 30 GB per month for EBS.
In your case, the usage you're seeing (25.6 GB-Mo) is approaching the Free Tier limit for EBS storage. This usage accumulates over time, even if your instance is stopped, as long as the EBS volume exists.
To completely stop all usage and charges:
- Terminate (not just stop) your EC2 instance if you don't plan to use it soon.
- Delete any associated EBS volumes after terminating the instance.
- Check for and release any Elastic IP addresses if you've allocated any.
- Review your EC2 dashboard to ensure you don't have any resources in other regions.
To monitor your usage more closely:
- Use the AWS Billing Dashboard to track your consumption.
- Set up AWS Budgets or Free Tier usage alerts to notify you when you're approaching limits.
- Regularly check the Free Tier usage page in your AWS console.
Remember, while AWS offers a generous Free Tier, it's crucial to understand which resources continue to consume your allocation even when not actively used. In the future, if you're done with an instance and don't plan to use it soon, it's best to terminate it and delete associated resources rather than just stopping it.
Regarding your question about charges: Yes, even with just one stopped instance, you can continue to accumulate usage, and potentially incur charges once you exceed the Free Tier limits. This is primarily due to the persistent EBS volumes and any other associated resources that continue to exist.
Sources
Why has an inactive EC2 instance exceeded 85% of the monthly usage limit? | AWS re:Post
About free tiel ec2 instance | AWS re:Post
AWS Free Usage Tier (Global-DataTransfer-Regional-Bytes) | AWS re:Post
안녕하세요.
EC2 인스턴스를 띄우면, 디스크가 연결되는데 이것이 EBS입니다. EBS는 프리 티어로 30GB 까지 사용할 수 있으며, 캡쳐 이미지로 봤을 때는 약 85% 사용 중입니다.
EBS 볼륨 사용량은 연결된 볼륨의 크기여서 OS에서 사용하는 사용량과 다르며, EBS 볼륨을 수정해서 확장/추가 할당을 하지 않으면 현재 상태가 유지되므로 과금 걱정을 하지 않아도 됩니다.
인스턴스가 정지 상태더라도, 볼륨은 할당되어 연결되어 있는 상태이기 때문에 사용량은 유지됩니다. 볼륨 할당 정보는 EC2콘솔 -> Elastic block store -> Volumes 에서 볼 수 있습니다.

1.So, is terminating the instance the only way to completely reduce usage to zero?
2.Where can I view the EBS volume associated with my instance?
3.Is there a way to automatically stop services or prevent charges once I reach the Free Tier limit?