Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Problems to load aws credentials to nifi

avatar
New Contributor

I'm trying to connect to dynamo db from nifi processor component "PutDynamoDB"

I'm putting my secret key in the field Access Key ID

secret key in Secret Access Key

and the path of the credentials in the format:

 

[default]

aws_access_key_id=<key id>
aws_secret_access_key=<access key>

 

At the moment of make the validation i get this message:

 

Perform Validation
 
Component is invalid: '' validated against 'Access Key' is invalid because Cannot set both Credentials File and Secret Key/Access Key
 
 
Does someone have an idea about this? I haven't foun anything related
1 ACCEPTED SOLUTION

avatar
Super Guru

@CJ-Llanes ,

 

You cannot specifie the Access Key ID, Secret Access Key and the credentials file path.

They are mutually exclusive.

You must either:

  • Specify only Access Key ID and Secret Access Key

OR

  • Specify only the credentials file path

But not both.

 

Cheers,

André

--
Was your question answered? Please take some time to click on "Accept as Solution" below this post.
If you find a reply useful, say thanks by clicking on the thumbs up button.

--
Was your question answered? Please take some time to click on "Accept as Solution" below this post.
If you find a reply useful, say thanks by clicking on the thumbs up button.

View solution in original post

2 REPLIES 2

avatar
Super Guru

@CJ-Llanes ,

 

You cannot specifie the Access Key ID, Secret Access Key and the credentials file path.

They are mutually exclusive.

You must either:

  • Specify only Access Key ID and Secret Access Key

OR

  • Specify only the credentials file path

But not both.

 

Cheers,

André

--
Was your question answered? Please take some time to click on "Accept as Solution" below this post.
If you find a reply useful, say thanks by clicking on the thumbs up button.

--
Was your question answered? Please take some time to click on "Accept as Solution" below this post.
If you find a reply useful, say thanks by clicking on the thumbs up button.

avatar
New Contributor

Thank you, it was that.