My instance (Amazon AMI) has two network interfaces : eth0 and eth1. I would like to upgrade from T2.Medium to T3.Medium.
But, it gives me an error saying :
Enhanced networking with the Elastic Network Adapter (ENA) is required for the 't3.medium' instance type. Ensure that your instance is enabled for ENA.
So, I found out that running the command "aws ec2 modify-instance-attribute --instance-id instance_id --ena-support" will enable ENA support.
Now, would it enable ENA support for both eth0 and eth1 ?
I have found a script https://github.com/awslabs/aws-support-tools/tree/master/EC2/C5M5InstanceChecks that checks pre-requisites.
It modified the "“/etc/fstab” to replace the device name of each partition with its UUID. Is it a safe operation ?
Do I need to install NVMe module to upgrade from T2 to T3 ?
If anything goes wrong (like I cant boot or status check failed etc), can I switch back to my backup and t2 reliably ?
Thank You.