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.

asked 2 years ago1162 views
1 Answer
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
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions