tags:

views:

173

answers:

3

Hi all

Bit confused here, I have an on-demand instance but do I get charged even when I stop the instance?

Thanks Kev

+2  A: 

When you stop an instance, it is 'deleted'. As such there's nothing to be charged for. If you have an Elastic IP or EBS, then you'll be charged for those - but nothing related to the instance itself.

Lee
Yes I do have an EBS, thanks for clarifying.
Mantorok
@Alexandre - as mentioned, yes if you have EBS, then you'll be charged for that. The 'instance' in actual EC2 terms no longer exists however. Have EBS as a boot disk, is not an instance - it's merely the equivalent of a Virtual Hard Disk.
Lee
A: 

Short answer - no.

You will only be charged for the time that your instance is up and running, in hour increments. If you are using other services in conjunction you may be charged for those but it would be separate from your server instance.

mwright
A: 

No.

You get charged for:

  1. Online time
  2. Storage space (assumably you store the image on S3)
  3. Elastic IP addresses
  4. Bandwidth

So... if you stop the EC2 instance you will only have to pay for the storage of the image on S3 (assuming you store an image ofcourse) and any IP addresses you've reserved.

WoLpH