Multi Environment deployment for AWS Serverless Application with .Net Core

0

Hi, I have created a ASP.NET Core Web API project using below option from Visual Studio. Actually I needed to install AWS Toolkit for Visual Studio to use this template.

Serverless_template

I have deployed this ASP.NET Core Web API to AWS Lambda using the option of right clicking the project and using the option Lambda_Deploy

When I try to deploy below popup appears but it doesn't give options to deploy in multiple environments. cloud_formation

Now I want same Web API to deploy for different environment like test environment so how can I deploy the same.

1 Respuesta
1
Respuesta aceptada

So for starters, you don't need to use the AWS Toolkit to create or deploy the AWS Serverless Application for .NET. You can also do this from the command line. To get the project templates for the command line, install the Amazon.Lambda.Templates tool using:
dotnet new -i Amazon.Lambda.Templates

After that, you can create a new serverless ASP.NET Core Web API with: dotnet new serverless.AspNetCoreWebAPI or dotnet new serverless.AspNetCoreMinimalAPI

You can deploy these serverless applications to Lambda the Amazon.Lambda.Tools global tool. You can install that tool using this command: dotnet tool install -g Amazon.Lambda.Tools

After that, you can deploy your serverless application to Lambda using: dotnet lambda deploy-serverless

To answer your other question, about environments: the AWS Toolkit is meant for deploying to test or dev environments, and not for production deployments. If you want to deploy to a different AWS account, choose a different profile. In your screenshot, you are using your "default" profile. You can create multiple profiles that have credentials for multiple AWS accounts, or even for the same account but associated with different IAM users. To deploy to another account, just re-deploy the Lambda, selecting a profile that is associated with another AWS account.

See the AWS docs for the .NET Core CLI for more details.

profile pictureAWS
Kirk_D
respondido hace un año

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas