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." }