I'm getting this weird issue when trying to import an SBT project into IntelliJ IDEA 15 CE.
The message is simply Unable to load AWS Credentials from any provider in the chain
.
I've tried exposing AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY
as environment variables for my session, and I know for sure that the values that I'm setting is correct. I've also tried creating a ~/.aws/credentials
file, but neither of these are doing anything towards fixing this error. I think this is specifically an IntelliJ error, because I can run this project in my console using sbt
just fine.
Here's a snippet from my sbt.last.log
. It's not super helpful.
[error] several problems occurred while resolving dependency: org.ow2#ow2;1.3 {}:
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error]
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error]
[error] several problems occurred while resolving dependency: org.ow2.asm#asm-parent;4.1 {}:
[error] several problems occurred while resolving dependency: org.ow2#ow2;1.3 {}:
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error]
[error] several problems occurred while resolving dependency: org.ow2#ow2;1.3 {}:
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error]
[error] several problems occurred while resolving dependency: org.ow2#ow2;1.3 {}:
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error]
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error]
[error] Unable to load AWS credentials from any provider in the chain
[error] Unable to load AWS credentials from any provider in the chain
[error] Total time: 596 s, completed Apr 5, 2016 10:59:14 AM
How do I fix this?