Forked from mikepfeiffer/gist:4d9386afdcceaf29493a
Created
September 21, 2018 04:15
-
-
Save mshahomar/f60d004ac86741ed93d32472944314a4 to your computer and use it in GitHub Desktop.
EC2 UserData script to install CodeDeploy agent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
yum install -y aws-cli | |
cd /home/ec2-user/ | |
aws s3 cp 's3://aws-codedeploy-us-east-1/latest/codedeploy-agent.noarch.rpm' . --region us-east-1 | |
yum -y install codedeploy-agent.noarch.rpm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment