Creating an AWS SQS with Pulumi
Create an AWS SQS resource using @pulumi/aws
The @pulumi/aws
library enables fine-grained control over the AWS SQS resource meaning it can be coded, deployed, and managed entirely in code.
const aws = require("@pulumi/aws");
const queue = new aws.sqs.Queue("myqueue");
Thank you for your feedback!
If you have a question about how to use Pulumi, reach out in Community Slack.
Open an issue on GitHub to report a problem or suggest an improvement.