Jeroen van Dijk

Results 87 comments of Jeroen van Dijk

I'm still waiting for the new job to complete Also I didn't mention it, but this is a run on a mac (`runs-on: macOS-latest`). I'll add a run for Linux...

Ok the step `Second prepare GraalVM` in the Mac Osx takes 0 seconds. When I test this on a Linux machine I see the same behaviour. I've been able to...

I think you are correct that it doesn't make a big difference, `lein deps` with a cache is pretty quick. If you do choose to add the if, you see...

I was talking about the maven caching, not the GraalVM download. That is still not cached. Do you mean I should add an `actions/cache@v1` step for your action to be...

It also contains the input stream: ```clojure (clojure.pprint/pprint (meta (aws/invoke s3 {:op :DeleteBucket :request {:Bucket "babashka-test2"}}))) {:http-request {:request-method :delete, :scheme :https, :server-port 443, :uri "/babashka-test2", :headers {"x-amz-date" "20210105T115030Z", "host" "s3.amazonaws.com",...

@borkdude I haven't been working with this pod recently, but I can give some feedback by looking at the code. @MIJOTHY The pod already exposes the `(credentials/default-credentials-provider)` by default and...

@tpot Thanks for the feedback. I think I have tried the `passthrough-constructor` before. Unfortunately it removes the necessary information (or maybe I'm missing another way to use it): ``` ➜...

@krestivo-kdinfotech These options you are referring to seem to be relatively new `~/.aws/credentials` format ([link](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html)) Cognitect AWS API library [only supports a very small part](https://github.com/cognitect-labs/aws-api/blob/master/src/cognitect/aws/credentials.clj#L240-L242) of the [v1 credentials file](https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/credentials.html)...

@stevebuik Maybe you can describe how you would like to see the `sts assume-role` to be built-in?

@borkdude Do you think we could add support for the `CredentialProvider` protocol now that Babashka supports `reify` and `defprotocol`? None of the above described functionality is available in Cognitect's AWS...