Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork38
Bash script to easily deploy applications with AWS Code Deploy. Designed to be used with CI systems such as TravisCI, CircleCI, and CodeShip and provide functionality that is not included in the out-of-box solutions from these vendors.
License
techpivot/aws-code-deploy
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This script deploys applications with theAWS Code Deploy service. The script uses the AWS CLI for underlying commands and extends functionality to provide common requirements for applications being deployed including compression, encryption, bucket revision limiting, monitoring, and more. It also handles creation of defined AWS Code Deploy components as necessary (e.g. Deployment Groups). By utilizing environment variables, this script is easily portable and intended to run inside CI containers. For more information, refer to theAWS Code Deploy documentation or theAWS CLI API.
- One dependency: AWS CLI (Automatically installed if not available)
- Automatically compress source directory
- Ability to limit the number of stored revisions by a key prefix to help reduce S3 total file size
- Server side encryption for revisions
- Full diagnostic output from failed instances
Step 1: Checking Dependencies✔ Dependencies met (aws: aws-cli/1.8.12 Python/2.7.6 Linux/3.14.28-031428-generic).Step 2: Configuring AWS✔ AWS Access Key already configured.✔ AWS Secret Access Key already configured.✔ Successfully configured AWS default region.Step 3: Checking Application➜ aws deploy get-application --application-name TechPivot✔ Application"TechPivot" already existsStep 4: Checking Deployment Config➜ aws deploy get-deployment-config --deployment-config-name CodeDeployDefault.AllAtOnce✔ Deployment config"CodeDeployDefault.AllAtOnce" already existsStep 5: Checking Deployment Group➜ aws deploy get-deployment-group --application-name TechPivot --deployment-group-name www.techpivot.net✔ Deployment group"www.techpivot.net" already existsfor application"TechPivot"Step 6: Compressing Source Contents➜cd"/home/ubuntu/deploy"&& zip -rq"/tmp/729#a4d2fa4.zip".✔ Successfully compressed"/home/ubuntu/deploy" (57M) into"729#a4d2fa4.zip" (18M)Step 7: Copying Bundle to S3➜ aws s3 cp --sse"/tmp/729#a4d2fa4.zip""s3://techpivot-codedeploy/www/729#a4d2fa4.zip"✔ Successfully copied bundle"729#a4d2fa4.zip" to S3Step 8: Limiting Deploy Revisions per Bucket/KeyChecking bucket/key to limit total revisions at 10 files ...➜ aws s3 ls"s3://techpivot-codedeploy/www/"Removing oldest 1 file(s) ...➜ aws s3 rm"s3://techpivot-codedeploy/www/713#1ef9317.zip"✔ Successfuly removed 1 file(s)Step 9: Registering Revision➜ aws deploy register-application-revision --application-name"TechPivot" --s3-location bucket=techpivot-codedeploy,bundleType=zip,key=www/729#a4d2fa4.zip --description"master (#a4d2fa4)"✔ Registering revision succeededStep 10: Creating Deployment➜ aws deploy create-deployment --application-name TechPivot --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name www.techpivot.net --s3-location bucket=techpivot-codedeploy,bundleType=zip,key=www/729#a4d2fa4.zip --description"Deployed via CircleCI on Sun Nov 8 23:32:30 UTC 2015"✔ Successfully created deployment:"d-CDR1HA75C"Note: You can follow your deployment at: https://console.aws.amazon.com/codedeploy/home#/deployments/d-CDR1HA75CDeployment OverviewMonitoring deployment"d-CDR1HA75C"for"TechPivot" on deployment group www.techpivot.net ...➜ aws deploy get-deployment --deployment-id"d-CDR1HA75C"Status| In Progress: 0| Pending: 0| Skipped: 0| Succeeded: 1| Failed: 0|✔ Deployment of application"TechPivot" on deployment group"www.techpivot.net" succeeded
Include the
techpivot/aws-code-deployproject from Packagist as a development dependency:composer.json
"require-dev" : {"techpivot/aws-code-deploy":"~1.0"}
or via command line:
composer require --dev techpivot/aws-code-deploy~1.0The file can then be executed directly:
./vendor/bin/aws-code-deploy.sh
Include theaws-code-deploy from NPM as a local or global dependency.
npm install aws-code-deploy -g- The file can then be executed globally:
aws-code-deploy
npm install aws-code-deploy --save-dev- The file can then be executed directly:
./node_modules/aws-code-deploy/bin/aws-code-deploy.sh
Environment variables are used to control the deployment actions. A brief summary is listed in the table below. Full descriptions with recommendations can be found by searching the readme for the variable name.
| Variable | Required | Description |
|---|---|---|
AWS_CODE_DEPLOY_KEY | No | If specified, sets the AWS key id |
AWS_CODE_DEPLOY_SECRET | No | If specified, sets the AWS secret key |
AWS_CODE_DEPLOY_REGION | No | If specified, sets the AWS region |
AWS_CODE_DEPLOY_APPLICATION_NAME | Yes | Application name. If it does not exist, will create. |
AWS_CODE_DEPLOY_DEPLOYMENT_GROUP_NAME | Yes | Deployment group name. If it does not exist, will create. |
AWS_CODE_DEPLOY_DEPLOYMENT_CONFIG_NAME | No | Deployment config name. By default:CodeDeployDefault.OneAtATime |
AWS_CODE_DEPLOY_MINIMUM_HEALTHY_HOSTS | No | The minimum number of healthy instances during deployment. By default:type=FLEET_PERCENT,value=75 |
AWS_CODE_DEPLOY_SERVICE_ROLE_ARN | No | Service role arn giving permissions to use Code Deploy when creating a deployment group |
AWS_CODE_DEPLOY_EC2_TAG_FILTERS | No | EC2 tags to filter on when creating a deployment group |
AWS_CODE_DEPLOY_AUTO_SCALING_GROUPS | No | Auto Scaling groups when creating a deployment group |
AWS_CODE_DEPLOY_APP_SOURCE | Yes | The source directory used to create the deploy archive or a pre-bundled tar, tgz, or zip |
AWS_CODE_DEPLOY_APP_BUNDLE_TYPE | No | Deploy bundle type when created from source directory (tgz orzip). Default:zip) |
AWS_CODE_DEPLOY_S3_BUCKET | Yes | The name of the S3 bucket to deploy the revision |
AWS_CODE_DEPLOY_S3_KEY_PREFIX | No | A prefix to use for the revision bucket key |
AWS_CODE_DEPLOY_S3_FILENAME | Yes | The destination name within S3. |
AWS_CODE_DEPLOY_S3_LIMIT_BUCKET_FILES | No | Number of revisions to limit. If 0, unlimited. Default =0 |
AWS_CODE_DEPLOY_S3_SSE | No | If specified andtrue will ensure the CodeDeploy archive is stored in S3 with Server Side Encryption (SSE) |
AWS_CODE_DEPLOY_REVISION_DESCRIPTION | No | A description that is stored within AWS Code Deploy that stores information about the specific revision |
AWS_CODE_DEPLOY_DEPLOYMENT_DESCRIPTION | No | A description that is stored within AWS Code Deploy that stores information about the specific deployment |
AWS_CODE_DEPLOY_OUTPUT_STATUS_LIVE | No | Booleantrue|false that specifies whether the deployment status should use a single line showing live status. In CI environments where the\r is not supported, set this tofalse for better logging. Default =true |
AWS_CODE_DEPLOY_IGNORE_APPLICATION_STOP_FAILURES | No | Booleantrue|false that specifies whether ApplicatonStop failures should be ignored. Set this totrue to ignore ApplicatonStop failures. Default =false |
circle.yml
machine: environment: # We are defining the $AWS_CODE_DEPLOY_KEY and $AWS_CODE_DEPLOY_SECRET in the CircleCI Project Settings > # AWS Permissions which automatically configure these for use via aws cli and are automatically read # via aws-code-deploy.sh. Alternatively, these could be specified securely (not via project code) using # the CircleCI Environment Variables CircleCI control panel. AWS_CODE_DEPLOY_REGION: us-west-2 AWS_CODE_DEPLOY_APPLICATION_NAME: "Company Website" AWS_CODE_DEPLOY_DEPLOYMENT_CONFIG_NAME: CodeDeployDefault.AllAtOnce AWS_CODE_DEPLOY_DEPLOYMENT_GROUP_NAME: "www.my-company.com" AWS_CODE_DEPLOY_SERVICE_ROLE_ARN: "arn:aws:iam::XXXXXXXXXXXXX:role/my-company-codedeploy" AWS_CODE_DEPLOY_EC2_TAG_FILTERS: "Key=Type,Value=www,Type=KEY_AND_VALUE" AWS_CODE_DEPLOY_APP_SOURCE: $HOME/deploy AWS_CODE_DEPLOY_S3_FILENAME: "${CIRCLE_BUILD_NUM}#${CIRCLE_SHA1:0:7}.zip" AWS_CODE_DEPLOY_S3_BUCKET: my-company-codedeploy-us-west-2 AWS_CODE_DEPLOY_S3_KEY_PREFIX: /www AWS_CODE_DEPLOY_S3_LIMIT_BUCKET_FILES: 10 AWS_CODE_DEPLOY_S3_SSE: true AWS_CODE_DEPLOY_REVISION_DESCRIPTION: "${CIRCLE_BRANCH} (#${CIRCLE_SHA1:0:7})" AWS_CODE_DEPLOY_DEPLOYMENT_DESCRIPTION: "Deployed via CircleCI on $(date)" AWS_CODE_DEPLOY_DEPLOYMENT_FILE_EXISTS_BEHAVIOR: "OVERWRITE"# ...deployment: production: branch: master commands: - bash vendor/bin/aws-code-deploy.shIn order for the script to execute successfully, the specified AWS credentials must be granted the requiredIAM privileges for the corresponding actions. Since various steps of this script are optional it allows forflexibility in creating policies that apply the principle of least privilege. Two common examples are describedbelow. In general, the script needs access to the following (depending on parameters):
- Code Deploy - Verifying Application, Creating Application, Creating Revisions
- Code Deploy Deployment - Creating Deployment, Creating Deployment Group, Listing Instances
- S3 - Uploading bundle to S3, Deleting Old Revisions
This may be best for first time users with
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "codedeploy:CreateApplication", "codedeploy:GetApplication", "codedeploy:GetApplicationRevision", "codedeploy:RegisterApplicationRevision" ], "Resource": [ "arn:aws:codedeploy:us-west-2:XXXXXXXXXXXX:application:TechPivot" ] }, { "Effect": "Allow", "Action": [ "codedeploy:CreateDeployment", "codedeploy:CreateDeploymentGroup", "codedeploy:GetDeployment", "codedeploy:GetDeploymentGroup", "codedeploy:GetDeploymentInstance", "codedeploy:ListDeploymentInstances" ], "Resource": [ "arn:aws:codedeploy:us-west-2:XXXXXXXXXXXX:deploymentgroup:TechPivot/*" ] }, { "Effect": "Allow", "Action": [ "codedeploy:GetDeploymentConfig" ], "Resource": [ "arn:aws:codedeploy:us-west-2:XXXXXXXXXXXX:deploymentconfig:CodeDeployDefault.OneAtATime", "arn:aws:codedeploy:us-west-2:XXXXXXXXXXXX:deploymentconfig:CodeDeployDefault.HalfAtATime", "arn:aws:codedeploy:us-west-2:XXXXXXXXXXXX:deploymentconfig:CodeDeployDefault.AllAtOnce" ] }, { "Effect": "Allow", "Action": [ "s3:DeleteObject", "s3:GetObject", "s3:PutObject" ], "Resource": [ "arn:aws:s3:::techpivot-codedeploy-us-west-2/*" ] }, { "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:ListObjects" ], "Resource": [ "arn:aws:s3:::techpivot-codedeploy-us-west-2" ] } ]}The following executables are installed:
- python-pip
- aws
Step 2:Configuring AWS
This step ensures that configuration parameters for AWS CLI are properly set.
Environment Variables:
AWS_CODE_DEPLOY_KEY(optional): AWS Access Key ID. If not already configured inaws cli, this is required.AWS_CODE_DEPLOY_SECRET(optional): AWS Secret Access Key. If not already configured inaws cli, this is required.AWS_CODE_DEPLOY_REGION(optional): Default region name
Step 3:Checking Application
This step ensures the application exists within Code Deploy. If it does not exist, it will attempt to create the application with the specified name.
Environment Variables:
AWS_CODE_DEPLOY_APPLICATION_NAME(required): Name of the application to deploy
Step 4:Deployment Config (optional)
This step ensures the specified deployment configuration exists for the application. Defining a custom configuration isoptional because you can use the deployment strategy already defined in Code Deploy.
Environment Variables:
AWS_CODE_DEPLOY_DEPLOYMENT_CONFIG_NAME(optional): Deployment config name. By default:CodeDeployDefault.OneAtATime. Built-in options:- CodeDeployDefault.OneAtATime
- CodeDeployDefault.AllAtOnce
- CodeDeployDefault.HalfAtATime
AWS_CODE_DEPLOY_MINIMUM_HEALTHY_HOSTS(optional): The minimum number of healthy instances during deployment. By default:type=FLEET_PERCENT,value=75
Step 5:Deployment Group
This step ensures the deployment group exists within the specified application. If it does not exist, the script will attempt to create the group using the name and defined service role ARN.
Environment Variables:
AWS_CODE_DEPLOY_DEPLOYMENT_GROUP_NAME(required): Deployment group nameAWS_CODE_DEPLOY_SERVICE_ROLE_ARN(optional): Service role arn giving permissions to use Code Deploy when creating a deployment groupAWS_CODE_DEPLOY_EC2_TAG_FILTERS(optional): EC2 tags to filter on when creating a deployment group. Specify as a string with the following comma separated keys:- Keystring
- Valuestring
- Typestring - Either:
KEY_ONLYorVALUE_ONLYorKEY_AND_VALUE
For example:
AWS_CODE_DEPLOY_EC2_TAG_FILTERS="Key=Type,Value=www,Type=KEY_AND_VALUE"AWS_CODE_DEPLOY_AUTO_SCALING_GROUPS(optional): Auto Scaling groups when creating a deployment group
Required IAM Access:
"codedeploy:CreateDeploymentGroup", "codedeploy:GetDeploymentGroup"This step compresses the specified source directory as a zip file in preparation for uploading to S3. This is useful for application deployments that use unique file names per revision. This helps limit the transfer to and from S3 during deployment.
Environment Variables:
AWS_CODE_DEPLOY_APP_SOURCE(required): Specifies the root source contents of the application. Theappspec.ymlshould exist within this directory. If not specified, the script will use the current working directory.AWS_CODE_DEPLOY_S3_FILENAME(required): The destination name within S3. Note that this shouldnot include any prefix keys as these are defined elsewhere. A recommended good practice would be to use a combination of the CI build number with the git short revision. (e.g. "100#c3a5fea.zip")
Step 7:Pushing to S3
This step consists to push the application to S3.
Environment Variables:
AWS_CODE_DEPLOY_S3_BUCKET(required): The name of the S3 bucket to deploy the revisionAWS_CODE_DEPLOY_S3_KEY_PREFIX(optional): A prefix to use for the file key. It's highly recommended to structure a bucket with a prefix per deployment group. This allows to limit stored revisions per deployment group. Note: A leading or trailing slash is not required.For example:
AWS_CODE_DEPLOY_S3_BUCKET="my-bucket-test"AWS_CODE_DEPLOY_S3_KEY_PREFIX="production-www"AWS_CODE_DEPLOY_S3_FILENAME="100#c3a5fea.zip"# The resulting stored file would exist at s3://my-bucket-test/production-www/100#c3a5fea.zip
This step ensures that applications with high revision/commit volume with unique filenames can removeold revisions to help limit the size of the container. Large teams can quickly fill S3 with multipleTBs/day depending on the projects. Since deployments typically don't need to store that many versionsbackwards, this step will ensure that only N revisions exist, removing oldest revisions upon deploy.
Note: If a limit is specified, the IAM permissions described below will need to be granted for thespecific s3://bucket/(key).
Environment Variables:
AWS_CODE_DEPLOY_S3_LIMIT_BUCKET_FILES(optional): Number of revisions to limit. If 0, unlimited. By default: 0
Required IAM Access:
- Wildcard:
s3:DeleteObject,s3:GetObject - Bucket Policy:
s3:ListBucket,s3:ListObjects
Step 9:Registering Revision
This step registers a code deploy revision for the uploaded file to the specified application/deployment group.
Environment Variables:
AWS_CODE_DEPLOY_REVISION_DESCRIPTION(optional): A description that is stored within AWS Code Deploy that stores information about the specific revision. Typically, the revision details would store information specific to the commit/CI/build details.
Step 10:Creating Deployment
This step deploys the application revision using the defined deployment settings across all hosts that match the deployment group.
Environment Variables:
AWS_CODE_DEPLOY_DEPLOYMENT_DESCRIPTION(optional): A description that is stored within AWS Code Deploy that stores information about the specific revision.
This step monitors the deployment and logs information about the overall status as well as any failed instance statuses.
Environment Variables:
AWS_CODE_DEPLOY_DEPLOYMENT_OVERVIEW(optional): Boolean that specifies whether to log detailed information about the status of the deployment. By Default:true
About
Bash script to easily deploy applications with AWS Code Deploy. Designed to be used with CI systems such as TravisCI, CircleCI, and CodeShip and provide functionality that is not included in the out-of-box solutions from these vendors.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Languages
- Shell100.0%