Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created August 6, 2019 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PradeepLoganathan/e8e69c982db58b60901f74f93cffd3b5 to your computer and use it in GitHub Desktop.
Save PradeepLoganathan/e8e69c982db58b60901f74f93cffd3b5 to your computer and use it in GitHub Desktop.
Cloudformation template to create an SQS queue
Resources:
SQSQueue:
Type: AWS::SQS::Queue
Properties:
QueueName: my-sqsqueue
Output:
SQSQueueURL:
Value: !Ref SQSQueue
Export:
Name: "SQSQueueURL"
SQSQueueArn:
Value: !GetAtt SQSQueue.Arn
Export:
Name: "SQSQueueArn"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment