Created
July 31, 2018 04:18
-
-
Save gwsu2008/e4fdd75a38577b523252b080d37db8b1 to your computer and use it in GitHub Desktop.
_cloudformation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Helpful templates |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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