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):
- Use aws lambda to control and configure (this is your only option through n8n cloud)
Either directly or via calling other AWS services - Use aws cli (via external commands)
- Use IaC like terraform (via external command)
- Via CI/CD trigger
Reg
J