Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions base/PRcheck22
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
AWSTemplateFormatVersion: "2010-09-09"
Description: "Example containing topic and an attached queue"
Parameters:
topicDisplayName:
Type: String
Description: "display name for the SNS topic"

Resources:
topic:
Type: "AWS::SNS::Topic"
Properties:
DisplayName: "|Ref|topicDisplayName"
Subscription:
- Endpoint: "|GetAtt|queue|Arn"
Protocol: sqs

queue:
Type: "AWS::SQS::Queue"

schedulingQueuePolicy:
Type: "AWS::SQS::QueuePolicy"
Properties:
Queues:
- "|Ref|queue"
PolicyDocument:
Statement:
- Action: SQS:SendMessage
Condition:
ArnEquals:
aws:SourceArn: "|Ref|topic"
Effect: Allow
Principal:
AWS: "*"
Resource: "|GetAtt|queue|Arn"
Version: "2012-10-17"

Outputs:
topicArn:
Description: "ARN of the topic"
Value: "|Ref|topic"
queueName:
Description: "Name of the queue"
Value: "|GetAtt|queue|QueueName"
queueArn:
Description: "ARN of the queue"
Value: "|GetAtt|queue|Arn"