Created
February 22, 2019 03:35
-
-
Save ecelis/44166ef793f0cfbf7b9a9c9d3369f9bb to your computer and use it in GitHub Desktop.
Provision CodeDeploy Agent to EC2 AWS AMI (RHEL/CentOS)
This file contains hidden or 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 | |
sudo yum -y update | |
sudo yum -y install ruby | |
sudo yum -y install wget | |
cd /home/ec2-user/ | |
wget https://aws-codedeploy-us-east-1.s3.amazonaws.com/latest/install | |
chmod +x ./install | |
sudo ./install auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment