Issue
I created my second instance using my first instance using "Create more like this", but my second instance is failing health checks even after my first instance has passed health check. What should I do to correct this error so that I can add multiple instances in my target group using load balancer?enter image description here
Solution
If you click Create more like this
you're creating a duplicate of the base AWS settings.
Any configuration done on top of the base AMI, such as package installation or code deployments will not be on your new instance. Make sure these are done before adding to the load balancer.
If you want to take an actual clone of the first instance then look at creating an AMI, and then launching from that instead.
Answered By - Chris Williams