https://github.com/iammukeshm/aws-codepipeline-dotnet-demo
Deploying ASP.NET Core Web API to AWS Elastic Beanstalk using AWS CodePipeline
https://github.com/iammukeshm/aws-codepipeline-dotnet-demo
aspnetcore aws codebuild codepipeline dotnet web webapi
Last synced: over 1 year ago
JSON representation
Deploying ASP.NET Core Web API to AWS Elastic Beanstalk using AWS CodePipeline
- Host: GitHub
- URL: https://github.com/iammukeshm/aws-codepipeline-dotnet-demo
- Owner: iammukeshm
- Created: 2022-12-18T12:32:04.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-18T18:51:35.000Z (over 3 years ago)
- Last Synced: 2025-02-27T04:47:41.018Z (over 1 year ago)
- Topics: aspnetcore, aws, codebuild, codepipeline, dotnet, web, webapi
- Language: C#
- Homepage: https://codewithmukesh.com/blog/deploying-aspnet-core-web-api-to-aws-elastic-beanstalk-using-aws-codepipeline/
- Size: 10.7 KB
- Stars: 4
- Watchers: 1
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Deploying ASP.NET Core Web API to AWS Elastic Beanstalk using AWS CodePipeline
In this article, we are going to be deploying ASP.NET Core Web API to AWS Elastic Beanstalk using AWS CodePipeline. In the process, we will learn the basics of AWS Codepipeline, AWS CodeBuild, and AWS Elastic Beanstalk. This article is going to be a bit different from the other ‘Deploy .NET to AWS’ we had gone through earlier, as this will also get you started with CI/CD Pipelines on AWS!
By the end of the article, you will be having an AWS CodePipeline that can deploy your application to AWS ElasticBeanStalk whenever there is a new code push in your GitHub Repository.

## Topics covered
- What’s AWS Elastic Beanstalk?
- What’s AWS CodePipeline?
- What’s AWS CodeBuild?
- Understanding CI/CD with AWS
- Pushing Code to GitHub
- Creating an AWS ElasticBeanstalk Environment & Application
- Creating an AWS Codepipeline – Step by Step
- Exploring the AWS CodePipeline
- Setting Environment Variable in AWS Elastic Beanstalk
Read the Article: https://codewithmukesh.com/blog/deploying-aspnet-core-web-api-to-aws-elastic-beanstalk-using-aws-codepipeline/