如何从实例角色向 Apache Camel SQS 路由提供默认凭据

发布于 2025-01-14 09:08:02 字数 385 浏览 0 评论 0原文

我正在使用 apache Camel 从 AWS SQS 读取消息。在 URI 中传递 AWS AccessKey SecretKey 时,它的工作原理与预期完全一样,但是......我不想在 URI 中添加密钥,我希望它从实例角色中获取默认凭证。我已向我的 IAM 角色授予 SQS 权限,但不知道如何将其传递给camel。

 from("aws-sqs://Queue-name?accessKey=....&secretKey=....&region=EU_WEST_1")
    .bean(bean.class, method)
    .toD("https://www.")

请在这方面帮助我

I am using apache camel for reading msg from AWS SQS. It Works exactly as expected when passing AWS AccessKey SecretKey in URI but.. I Don't want to add secret keys in URI I want it to take default credentials from Instance Role. I have given SQS permission to my IAM Role but don't know how to pass it to camel.

 from("aws-sqs://Queue-name?accessKey=....&secretKey=....®ion=EU_WEST_1")
    .bean(bean.class, method)
    .toD("https://www.")

Please help me in this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安穩 2025-01-21 09:08:02

我的建议是使用 LTS 版本。 Apache Camel 的最后一个 LTS 版本是 3.14.x。

对于您的具体问题,请查看文档中的“useDefaultCredentialsProvider”参数: https://camel.apache.org/components/3.14.x/aws2-sqs-component.html

它将遵循 AWS SDK v2 中报告的顺序文档:https://docs.aws。 amazon.com/sdk-for-java/latest/developer-guide/credentials.html

My suggestion is to use an LTS release. The last LTS release of Apache Camel is 3.14.x.

For your specific problem have a look at the "useDefaultCredentialsProvider" parameter in the documentation: https://camel.apache.org/components/3.14.x/aws2-sqs-component.html

It will follow the order reported in the AWS SDK v2 docs: https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/credentials.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文