Home > database >  Does my bill become 0$ if I delete every resource before the end of a month on AWS (Amazon Cloud)?
Does my bill become 0$ if I delete every resource before the end of a month on AWS (Amazon Cloud)?

Time:10-19

I'm a student and I'm new to AWS. I've already created a Free Tier account and set my budget to 1$. I only use the account for testing/learning purposes. After reading this post on SOF (about a guy who creates an account for learning purposes like me, then loses a bunch of $ for no reason), I'm quite worried. I have some questions about how Amazon charges me.

Does my bill become 0$ if I terminate every service/remove all resources before the end of a month? I sent this question to AWS support and they said as long as I stop every Outbound Data transfer service then it's fine. People on the internet also said that if I remove all the resources after testing/learning then it's ok too.

I'm still not sure. Does it mean that I can use every service as much as possible, as long as I terminate/remove everything before the end of a month then I won't get charged? And at the start of the next month, I can do everything again? Sound like an exploit and impossible case to me.

It's like at the start of a month, you borrow an iPhone 13 from an Apple shop, you use the phone for free for 1 month, and at the end of a month, you factory reset the phone and brought it back to the shop. Next month you do everything again.

CodePudding user response:

No, you're misunderstanding something. AWS costs accrue as you use services. For example, if you start an EC2 instance, use it for 10 minutes, then stop it, you will be billed for each minute of usage at the rate shown on the EC2 pricing page. Similarly, if you store objects on S3 for a period of time and later delete them, you will be billed for the duration you stored the object.

You can see what services are available for free perpetually on the AWS Free Tier.

  • Related