aws / aws-dotnet-deploy

Opinionated tooling that simplifies deployment of .NET applications to AWS.
https://aws.github.io/aws-dotnet-deploy/
Apache License 2.0
138 stars 31 forks source link

No instructions to add a new or existing simple queue service to recipe schema file #844

Open aliew opened 1 month ago

aliew commented 1 month ago

Describe the issue

Hi guys,

I like to customise my deployment project to be able to create new / use existing simple service queue. I could not find any instructions in the documentation by customizing the recipe file to support this resource. I can only view the one example resource, of adding a Dynamo DB table to the deployment project: https://aws.github.io/aws-dotnet-deploy/tutorials/custom-project/. Are we able to add documentation on what resources are supported with the recipe schema and some examples to accompany this.

Thanks.

Links

https://aws.github.io/aws-dotnet-deploy/tutorials/custom-project/

normj commented 1 month ago

The recipe file is used to drive the UI, either VS or the CLI, to guide the user to provide input values into CDK project. With CDK project you can create anything CDK or the AWS SDK support based on the input collected from the UI and passed into the user. The sample you linked to describes how to create UI settings for the name for an existing DDB table or create new. For SQS the process would be basically the same but in the CDK project you would use the CDK constructs for SQS.