Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

commitPR22 #13

Open
wants to merge 1 commit into
base: aws-provider-version
Choose a base branch
from
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"