[
https://issues.apache.org/jira/browse/CAMEL-18625?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17620334#comment-17620334
]
Ajithlal edited comment on CAMEL-18625 at 10/19/22 12:47 PM:
-------------------------------------------------------------
{{FYI : aws saml profile connectivity using s3}}
{code:java}
var client = AmazonS3ClientBuilder.standard()
.withCredentials(new
ProfileCredentialsProvider("intdev")).withRegion(awsRegion)
.build();
from("direct:s3connect")
.to("aws-s3://\{{app.aws-s3.BucketName}}?amazonS3Client=#client")
.end();
{code}
was (Author: JIRAUSER297241):
{{FYI : aws saml profile connectivity using s3}}
{code:java}
var client = AmazonS3ClientBuilder.standard()
.withCredentials(new
ProfileCredentialsProvider("intdev")).withRegion(awsRegion)
.build();
from("direct:kafkaConsumer")
.to("aws-s3://\{{app.aws-s3.BucketName}}?amazonS3Client=#client")
.end();
{code}
> Provide an option to pass specific AWS SAML Profile
> ----------------------------------------------------
>
> Key: CAMEL-18625
> URL: https://issues.apache.org/jira/browse/CAMEL-18625
> Project: Camel
> Issue Type: New Feature
> Components: camel-aws
> Affects Versions: 3.20.0
> Reporter: Ajithlal
> Priority: Major
>
> Currently there is no option to pass specific AWS SAML profile when I am
> connecting to AWS secret-manager from camel aws vault program.
> I am expecting ,need a option to set aws saml profile name inside
> application.properties file.
> If user is make below configuration
> camel.vault.aws.defaultCredentialsProvider=false
> camel.vault.aws.saml.profileCredentialName=intdev
> then it should connect to aws resource.
> ("{*}intdev{*}" is aws saml profile name."{*}intdev"{*} is not default
> profile )
>
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)