Here’s the error message L’m receiving:
Error executing "SendMessage" on "https://sqs.ap-southeast-1.amazonaws.com"; AWS HTTP error: Client error: `POST https://sqs.ap-southeast-1.amazonaws.com` resulted in a `400 Bad Request` response: {"__type":"com.amazonaws.sqs#QueueDoesNotExist","message":"The specified queue does not exist."} AWS.SimpleQueueService.NonExistentQueue (Sender): The specified queue does not exist. -
In my local I’m trying to setup SQS as my queue driver. Here’s my .env
file.
AWS_ACCESS_KEY_ID=xxx
AWS_SECRET_ACCESS_KEY=yyy
AWS_DEFAULT_REGION=ap-southeast-1
AWS_USE_PATH_STYLE_ENDPOINT=true
SQS_PREFIX=https://sqs.ap-southeast-1.amazonaws.com/123456
SQS_QUEUE=zzzzz
I’m using Laravel 11
I created a newly standard type SQS and IAM role with AdministratorAccess
and AmazonSQSFullAccess
. Can someone help me with this?