Entradas

Mostrando las entradas con la etiqueta Stack to create a SQS in AWS

Stack to create a SQS in AWS

Stack to create a SQS in AWS Cloudformation: AWSTemplateFormatVersion: '2010-09-09' Description: Template to create the sqs in aws Parameters: Stage: Description: Environment Name Type: String StandardQueueName: Type: String Description: Queue Name Resources: QueueRefDLQ: Type: AWS::SQS::Queue Properties: QueueName: !Join [ "-", [!Ref StandardQueueName, "dlq"] ] Tags: - Key: "environment" Value: !Ref Stage QueueRef: Type: AWS::SQS::Queue Properties: QueueName: !Ref StandardQueueName ReceiveMessageWaitTimeSeconds: 10 VisibilityTimeout: 900 KmsMasterKeyId: alias/aws/sqs RedrivePolicy: deadLetterTargetArn: !GetAtt - QueueRefDLQ