Skip to content

Instantly share code, notes, and snippets.

@gwsu2008
Created July 31, 2018 04:18
Show Gist options
  • Save gwsu2008/e4fdd75a38577b523252b080d37db8b1 to your computer and use it in GitHub Desktop.
Save gwsu2008/e4fdd75a38577b523252b080d37db8b1 to your computer and use it in GitHub Desktop.
_cloudformation
Helpful templates
{
"AWSTemplateFormatVersion": "2010-09-09",
"Resources": {
"MyQueue": {
"Properties": {
"QueueName": "MyQueue.fifo",
"FifoQueue": true,
"ContentBasedDeduplication": true
},
"Type": "AWS::SQS::Queue"
}
},
"Outputs": {
"QueueName": {
"Description": "The name of the queue",
"Value": {
"Fn::GetAtt": [
"MyQueue",
"QueueName"
]
}
},
"QueueURL": {
"Description": "The URL of the queue",
"Value": {
"Ref": "MyQueue"
}
},
"QueueARN": {
"Description": "The ARN of the queue",
"Value": {
"Fn::GetAtt": [
"MyQueue",
"Arn"
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment