Amazon SQS Access Denied Exception

0

I am trying to send messages to an SQS queue. For local environment I am setting up the AmazonSQS object like below

amazonSQS =
AmazonSQSClientBuilder.standard()
    .withCredentials(
        new AWSStaticCredentialsProvider(new BasicAWSCredentials(accessKey, secretKey)))
    .withEndpointConfiguration(new AwsClientBuilder.EndpointConfiguration(endpoint, region))
    .build();

For my development environment I am setting up like below:

amazonSQS = AmazonSQSClientBuilder.defaultClient();

The tests run fine locally but in my dev environment, I am getting the below error:

com.amazonaws.services.sqs.model.AmazonSQSException: Access to the resource https://sqs.us-east-1.amazonaws.com/2092384092384/error-handler-queue is denied. (Service: AmazonSQS; Status Code: 403; Error Code: AccessDenied; Request ID: 7bc7e074-a36a-544d-9489-bbe66133f0a8; Proxy: null)

What could be the issue ? Any help is appreciated

質問済み 2年前1466ビュー
1回答
0

Hi, @sniranjan.

It looks like you're not using credentials with the proper permissions.

Where is your development environment hosted? EC2? Lambda?
I assume you're using the AWS SDK for Java, but check the credentials below. Check your environment variables and instance profile.

https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/credentials.html

Next, if you can get IAM information, first check if the IAM policy settings are the same as your local environment. (In the end it's correct to set least privilege)

profile picture
エキスパート
iwasa
回答済み 2年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ