This whitepaper is for historical reference only. Some content might be outdated and some links might not be available.
Seamless Integration with Azure DevOps
The main integration point for Azure DevOps with AWS is through Azure DevOps pipelines. You can configure Azure DevOps pipeline to build, test, package and release software to different AWS environments. You can use the following methods for this integration.
AWS Tools for Azure DevOps
AWS Tools for Azure DevOps
After installation, you can choose from a set of pipeline tasks that can be included in your pipeline to integrate with AWS.
These building blocks can then be used to construct complex deployment pipelines. The following figure shows an example pipeline designed to build, test, and publish an ASP.NET Core web application to an AWS Elastic Beanstalk environment.

Pipeline for building, testing, and deploying an ASP.NET Core application to AWS Elastic Beanstalk
Pipeline step descriptions
-
Executes .NET Core build task, such as Git pull
-
Executes .NET Core build task
-
Executes .NET Core test task
-
Executes .NET Core publish task
-
Copies an AWS Elastic Beanstalk manifest file into the bundle
-
Creates a zip archive from newly published website content.
-
Uploads the zip archive to an S3 bucket.
-
Deploys the application in an AWS Elastic Beanstalk environment.
Custom Scripts
If you need functionalities beyond those provided through extensions published by AWS, or if you need more fine-grained control over your pipeline, you can use AWS CLI or AWS Tools for Windows PowerShell to create a custom task or step in Azure DevOps pipeline.