Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
I've been trying to get Amazon SQS working with the v3 JS client. I've gotten to the point where I can successfully create a queue using the frontend, but the issue starts when I try and send/recei...
#1: Initial revision
Access denied to read SQS queue just created
I've been trying to get Amazon SQS working with the v3 JS client. I've gotten to the point where I can successfully create a queue using the frontend, but the issue starts when I try and send/receive on that queue. The exception I'm seeing is: ``` Access to the resource https://sqs.<region>.amazonaws.com/ is denied. ``` Here is essentially what the code is: ``` this.sqs = new SQSClient({ region: <region>, credentials: this.creds }); const createQueue = new CreateQueueCommand({ QueueName: `myqueue.fifo`, Attributes: { FifoQueue: 'true', ContentBasedDeduplication: 'true' }, tags: this.amazonService.getResourceTags() }) const queueUrlJson = await this.sqs.send(createQueue); const receiveMessages = new ReceiveMessageCommand({ MaxNumberOfMessages: 10, QueueUrl: queueUrlJson.QueueUrl, VisibilityTimeout: 5, WaitTimeSeconds: 5 }); const messages = await this.sqs.send(receiveMessages); ``` The `createQueue` command succeeds, but the `receiveMessages` command fails. The relevant IAM policy has a wildcard on `sqs:*` with restrictions related to `aws:ResourceTags`. I'm confused as to why one operation is allowed, which would mean the tags matched, while the other is denied.