如何从实例角色向 Apache Camel SQS 路由提供默认凭据
我正在使用 apache Camel 从 AWS SQS 读取消息。在 URI 中传递 AWS AccessKey SecretKey 时,它的工作原理与预期完全一样,但是......我不想在 URI 中添加密钥,我希望它从实例角色中获取默认凭证。我已向我的 IAM 角色授予 SQS 权限,但不知道如何将其传递给camel。
from("aws-sqs://Queue-name?accessKey=....&secretKey=....®ion=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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的建议是使用 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