EC 2 free tier charges - amazon-web-services

I have an Amazon AWS account, with a few EC2 running instances (3) in different locations. I subscribed the 12 month trial. Suddenly, my billing dashboard started to stack up costs, updating every day.
The instances are virtual machines with windows server 2012, all configured under the free tier settings. I use them mainly form testing, with few downloads/uploads and streaming.
They Are charging for a few bucks for data transfer,and also a reasonable amount described as EC2.
I've read somewhere that one could create more than one EC2, and for what i supposed, the 750 hours limit is for each instance, But this probably is Wrong.
So, what can one do and not do, under the free Absolutely free tier limit ?

Based on the documentation you can run 750 hours of a Linux t2.micro or t1.micro instance plus 750 hours of a Windows t2.micro or t1.micro instance each month for the first 12 months under the free tier. So in your case you have exceeded the free tier limitations, by starting 3 Windows Server 2012 instances and keep them running more than 2/3 of the month.
Since AWS Free Tier involves 750hrs of Free Time per month, you could ideally start 750 EC2 instances, 1 hour/per month.

Related

AWS EC2 Windows Server 2019 billing free tier

I'm just wondering about the free tier. I've created an EC2 instance with windows server 2019. When I selected it it said "free tier eligible". Does this mean it'll be free forever, will I be charged for something and how can I prevent any extra charges?
I believe you get 750 Hours per month for a single free tier instance during your first 12 months. Meaning you should just be able to keep it running for the first year of your membership.
More details can be found here.

Do I incur charges when downloading on an EC2 instance?

I use AWS free tier to spin up t2.micro boxes and use it to practice Docker since the download speed is vastly great when pulling large images in mere seconds.
I am assuming download is free and upload -pushing images for example- is chargeable although not sure the exact amount.
How much are the costs here?
You incur upload costs when you exceed more than 1 GB upload per month. Please see: https://aws.amazon.com/ec2/pricing/on-demand/#Data_Transfer
Note that I'm providing a link here rather than providing values because the costs may differ from Region to Region, and from year to year.
For more information on the Free tier limits have a play with: https://aws.amazon.com/free/
Also, remember that it is 750 hours of t2.micro or t3.micro a month. You could spend all these 750 hours with 1 instance and that would take 750 hours. If however you decided to run 750 instances then you would use up your whole months 750 hours in 1 hour.
Lastly remember your EBS limit is 30 GiB. If you launched 4 Ubuntu instances with 4 root volumes of 8 GiB then you would be exceeding your free tier limit by 2 GiB.
Data Transfer IN To Amazon EC2 From Internet: No charge
Data Transfer OUT From Amazon EC2 To Internet is charged at 9c/GB (in US regions).
Also: "As part of AWS’s Free Usage tier, new AWS customers will receive free 15 GB of data transfer out each month aggregated across all AWS services for one year except in the AWS GovCloud region."

Can I shift an existing EC2 instance to free-tier?

I made a free tier server on my account and configured it there. Then I had to shift the server to my client's account I made an image of that server and copied it to my client's account so that I wouldn't have to configure all of it again. Turns out it kept all the configurations EXCEPT the free-tier one.
So is there a way for me to make this ec2 instance free tier? Or do I have to build a free tier ec2 from scratch again?
Launch the instance in free tier using AMI(Image of the) as you already have the AMI with you.
And there is no way to move existing instance to free tier,just terminate it after launching the new one in free tier.
The AWS Free Tier is a billing discount.
For Amazon EC2, it provides:
750 hours per month of Linux, RHEL, or SLES t2.micro or t3.micro instance dependent on region
750 hours per month of Windows t2.micro or t3.micro instance dependent on region
So, each month, any usage that matches the above is not charged (up to the appropriate number of hours). This means you could run one Linux instance for an entire month, or two instances for half a month, or even 30 instances for 1 day.
You cannot nominate specific resources to be included in the Free Tier. It is calculated based upon total usage, so might cover multiple EC2 resources.

Amazon EC2 Free Tier when will "COMPUTE" exceeds its limitation?

I'm new to AWS and trying to learn its concepts. This one is really confusing to me about the AWS Free Tier.
This says 750 hours of free COMPUTE each month, (24 hours * 31 days = 744 hours).
My question is when will I end up overusing it? As I don't want to pay any money in first year.
The full description is:
750 hours per month of Linux, RHEL, or SLES t2.micro instance usage
This can be used as one instance running all the time, or two instances running for 375 hours or 10 instances running for 75 hours, etc. It is applied as a billing discount, giving the first 750 hours at no charge.
If you run ONE t2.micro instance, then there will be no charge for the instance during the first year.
However, there might be some associated charges such as Amazon EBS Volumes, Elastic IP addresses (if not attached to a running instance), data transfer, snapshots and T2 Unlimited. There is a free tier for each of these, but charges will apply if the free tier is exceeded.

How is Amazon Ec2 running usage counted if I'm hosting a website?

I'm set a website using the Amazon free tier in an EC2 instance. The free tier is giving me 750 hours of EC2 Linux t2.micro instance usage. I would like to know how the instance hours are counted to ensure the usage doesn't exceed the free tier limit.
I suppose if my website is not down the instance should be running 24 hours a day which will result in a maximum of 24 hours x 31 days = 744 hours per month usage.
Is that the case?
The AWS Free Tier provides 750 hours per month for a t2.micro Linux instance.
Therefore, if you keep one t2.micro Linux instance running for an entire month, then there is no charge for Amazon EC2.
You could, alternatively, run two instances for half a month each, since that would combine to the same total hours.
EC2 instance usage is calculated by the second or by the hour, depending on which AMI you're using:
per-second for most Linux distributions
per-hour for Windows, and for Linux distributions that have a separate hourly charge
If your instance is per-second, then you're billed a minimum of 60 seconds each time an instance starts.
If your instance is per-hour, then you're billed a minimum of one hour each time an instance starts.
An instance is considered to be 'started' when it enters the running state.