From 533535709ff2fc419b742680110eae67ef2a8dab Mon Sep 17 00:00:00 2001 From: Sohan Yadav Date: Wed, 30 Oct 2019 17:02:20 +0530 Subject: [PATCH] fix outputs --- outputs.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/outputs.tf b/outputs.tf index 0f08510..98de989 100644 --- a/outputs.tf +++ b/outputs.tf @@ -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." }