Home > OS >  How to change instance type in AutoScalingGroups using API?
How to change instance type in AutoScalingGroups using API?

Time:11-25

I need to change EC2 instance type in AutoScalingGroups using API. In my case, I'm using nodejs, but it does not matter.

This link says that the only parameters from description method are available. enter image description here

Is there any workaround to get it done?

CodePudding user response:

You have to do that by creating new launch configuration or new version of your launch template, and then update your group to use the new Launch Configuration or Launch Template.

  • Related