How to Change EC2 Instance Type Without Downtime Using n8n?

How can I change the EC2 instance type using n8n without downtime? Is there a way to automate it via AWS nodes while ensuring minimal or zero disruption?

Hi, this is rather an AWS question than n8n. Anyway, as far as I remember you could use EC2 auto-scaling groups for this.

So I didn’t check the community nodes but in the official nodes there is no “EC2” node

So your options are (imho):

  1. Use aws lambda to control and configure (this is your only option through n8n cloud)
    Either directly or via calling other AWS services
  2. Use aws cli (via external commands)
  3. Use IaC like terraform (via external command)
  4. Via CI/CD trigger

Reg
J