Created
February 19, 2020 00:08
-
-
Save DorkNstein/0d63715b0e5e28c9a68fb9dcdebcfe0b to your computer and use it in GitHub Desktop.
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
# Create CodeDeploy in AWS IAM | |
# Follow: https://levelup.gitconnected.com/set-up-a-continuous-delivery-pipeline-from-bitbucket-to-aws-ec2-using-aws-code-deploy-a9777a3cbcad | |
sudo yum update -y \ | |
&& sudo yum install ruby wget -y \ | |
&& cd /home/ec2-user \ | |
&& wget https://aws-codedeploy-us-east-1.s3.us-east-1.amazonaws.com/latest/install \ | |
&& chmod +x ./install \ | |
&& sudo ./install auto \ | |
&& sudo service codedeploy-agent start \ | |
&& sudo service codedeploy-agent status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment