Is there a way to STOP not TERMINATE instances using auto-scaling in AWS?

Add that instance to Scale in protection and then stop the instance then it will not delete your instance as it's having the scale in protection.


You can suspend scaling processes, see documentation here:

https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-suspend-resume-processes.html#as-suspend-resume


No, it is not possible to Stop an instance under Auto Scaling. When a Scaling Policy triggers the removal of an instance, Auto Scaling will always Terminate the instance.

However, here's some ideas to cope with the concept of Termination...

Option 1: Use pre-configured AMIs

You can configure an Amazon EC2 instance with your desired software, data and settings. Then, select the EC2 instance in the Management Console and choose the Create Image action. This will create a new Amazon Machine Image (AMI). You can then configure Auto Scaling to use this AMI when launching a new instance. Each new instance will contain exactly the same disk contents.

It's worth mentioning that EBS starts up very quickly from an AMI. Instead of copying the whole AMI to the boot disk, it copies it across on "first access". This means the new instance can start-up immediately rather than waiting for the whole disk to be copied.

Option 2: Use a startup (User Data) script

Each Amazon EC2 instance has a User Data field, which is accessible from the instance. A script can be passed through the User Data field, which is then executed when the instance starts. The script could be used to install software, download data and configure the instance.

The script could do something very simple, like download a configuration script from a source code repository, then execute the script. This means that machine configuration can be centrally managed and version-controlled. Want to update your app? Just launch a new instance with the updated script and throw away the old instance (which is much easier than "updating" an app).

Option 3: Add/Remove instances to an Auto Scaling group

Rather than using Scaling Policies to Launch/Terminate instances for an Auto Scaling group, it is possible to attach/detach specific instances. Thus, you could 'simulate' auto scaling:

  • When you want to scale-down, detach an instance from the Auto Scaling group, then stop it.
  • When you want to add an instance, start the instance then attach it to the Auto Scaling group.

This would require your own code, but it is very simple (basically two API calls). You would be responsible for keeping track of which instance to attach/detach.


Actually you have three official AWS options to reboot or even stop an instance which belongs to an Auto Scaling Group:

  • Put the instance into the Standby state
  • Detach the instance from the group
  • Suspend the health check process

Ref.: https://aws.amazon.com/premiumsupport/knowledge-center/reboot-autoscaling-group-instance/