Skip to content

Commit

Permalink
Merge pull request #1 from clouddrove/fix-outputs
Browse files Browse the repository at this point in the history
fix outputs
  • Loading branch information
anmolnagpal committed Oct 30, 2019
2 parents a32eea7 + 5335357 commit 5a27fe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Module : SQS
# Description : Terraform module to create SQS resource on AWS for managing queue.
output "id" {
value = join("", sqs_queue.default.*.id)
value = join("", aws_sqs_queue.default.*.id)
description = "The URL for the created Amazon SQS queue."
}

output "arn" {
value = join("", sqs_queue.default.*.arn)
value = join("", aws_sqs_queue.default.*.arn)
description = "The ARN of the SQS queue."
}

Expand Down

0 comments on commit 5a27fe4

Please sign in to comment.