Skip to content

Is generating a support ticket needed for closing an EC2 VPC instance?

0

Greetings, I wanted to ask, is there any need to generate a support ticket before closing down an EC2 VPS instance? It is a completely production level instance and it is going to be stopped this month. Before doing so, Do we need to generate a support ticket? Also, there is a difference between stopping an instance and terminating. So kindly guide me about that. If we stop the instance only, and not completely terminate it, how much charges will be there per month? Please guide me about the entire process. Regards, Anum

asked 10 days ago24 views
1 Answer
0

You don't need to generate a support ticket before stopping or terminating an EC2 instance. You can perform these actions directly through the AWS Management Console.

There is an important difference between stopping and terminating an instance:

  1. Stopping an instance: When you stop an instance, it enters a "stopped" state. The instance is shut down, but the EBS volumes remain attached and preserve their data. You will continue to be charged for any attached EBS volumes, but not for the instance hours. This is useful when you want to temporarily halt the instance but plan to use it again later.

  2. Terminating an instance: When you terminate an instance, it's completely removed. The instance enters a "shutting-down" state before finally reaching "terminated" status. Any EBS volumes marked for deletion on termination will be deleted (losing their data), and you will no longer be charged for the instance or those volumes. Terminated instances will continue to appear in your instance list for some time before AWS reclaims them, but you are not charged for instances in a terminated state.

If you stop (but don't terminate) your instance, you'll only be charged for:

  • The attached EBS volumes
  • Any allocated public IPv4 addresses
  • Any other persistent resources associated with the instance

If you don't need the instance anymore and want to avoid all charges related to it, termination is the better option. Before terminating, make sure to back up any important data from the instance's EBS volumes if needed.
Sources
How to make sure instances on my account terminate to prevent future charges | AWS re:Post
Managing Amazon EC2 Instances - AWS Toolkit for Visual Studio

answered 10 days ago
AWS
MODERATOR
reviewed 10 days ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.