Skip to content

Commit

Permalink
fix outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohan Yadav committed Oct 30, 2019
1 parent a32eea7 commit 5335357
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 5335357

Please sign in to comment.