BLuM
BLuM

Reputation: 661

Elastic beanstalk and Visual Studio Online

Is there any way to deploy build from VSO direct to Elastic Beanstalk? I have working build of .Net Core application and I can easy deploy it from AWS Toolkit, but don't know it is possibile from VSO.

Upvotes: 1

Views: 514

Answers (1)

starian chen-MSFT
starian chen-MSFT

Reputation: 33708

You can use the deployment tool to automate deployments to Elastic Beanstalk.

  1. Set up an on premise build agent
  2. Prepare environment (e.g. install AWS Toolkit for VS)
  3. Call awsdeploy.exe tool to deploy via Command Line build step/task (e.g. Tool: C:\Program Files (x86)\AWS Tools\Deployment Tool\awsdeploy.exe, Working folder: $(build.sourcesdirectory), Arguments: ElasticBeanstalkDeploymentSample.txt)

More information about deployment tool, you can refer to: Deploying Elastic Beanstalk Applications in .NET Using the Deployment Tool

Upvotes: 1

Related Questions