Terraform data source for managing an AWS SQS (Simple Queue) Queues.
data "aws_sqs_queues" "example" {
queue_name_prefix = "example"
}
The following arguments are optional:
queue_name_prefix
- (Optional) A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned. Queue URLs and names are case-sensitive.This data source exports the following attributes in addition to the arguments above:
queue_urls
- A list of queue URLs.