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

feat(sns): Adds SNS to AWS App - 4700 #32

Merged
merged 11 commits into from
Jul 14, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixes dodgy logic
  • Loading branch information
wayerst committed Jul 13, 2022
commit 9ab7cdae347b69826e30908547051cc4159f5152
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
# Outputs
#########
output "sqs_queue_id" {
count = var.create ? 1 : 0
description = "The ID for the created Amazon SQS Queue"
value = var.create ? aws_sqs_queue.queue[0].id : null
}
output "sqs_queue_arn" {
count = var.create ? 1 : 0
description = "The ARN for the created Amazon SQS Queue"
value = var.create ? aws_sqs_queue.queue[0].arn : null
}