Run shell script as EC2 user on Cloud formation User data

0

Hi, I want to run the Shell script n cloudformation userdata section as EC2 user, Could you please guide me how to execute this and whether it is possible or not.

Thanks, Sreenivas.

preguntada hace 2 años1179 visualizaciones
1 Respuesta
0

There's a couple different ways you can do it, but this was the one that worked best for me. Add this to your user-data script, minus the nvm stuff of course:

# Install nvm
sudo -u ec2-user  -i <<'EOF'

cd /home/ec2-user
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source /home/ec2-user/.bashrc
nvm install 10.19.0
nvm use 10.19.0

EOF
profile picture
kyager
respondido hace 2 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas