AWS CLI start instance
I wanted to start an instance from my terminal rather than going onto the AWS console. Firstly choose the profile, then search for the instance: export AWS_PROFILE=xyze aws ec2 describe-instances –output table | grep -B150 backup | grep InstanceId –output table presents the output as a nice table rather than json. Grep searches for the … Read more