Skip to content

Commit

Permalink
Added sts library to fix assume role errors in AWS deployments (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Duin committed Jun 3, 2024
1 parent 43ef82d commit 9e6da0d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).



## 7.3.9 - 2024-06-03
### Added
- Add `aws-java-sdk-sts` to enable IRSA authentication in `apiary-metastore-listener`.

## 7.3.8 - 2023-08-02
### Added
- `max.request.size` [Kafka property](https://kafka.apache.org/documentation/#producerconfigs_max.request.size) in `kafka-metastore-listener`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>apiary-priviliges-grantor-lambda</id>
<formats>
<format>zip</format>
</formats>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
<artifactId>aws-java-sdk-core</artifactId>
<version>${aws-java-sdk.version}</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sts</artifactId>
<version>${aws-java-sdk.version}</version>
</dependency>

<dependency>
<groupId>com.tdunning</groupId>
Expand Down

0 comments on commit 9e6da0d

Please sign in to comment.