Skip to content

Commit

Permalink
added region to rds client auth token builder
Browse files Browse the repository at this point in the history
  • Loading branch information
cameroncaci committed Dec 9, 2023
1 parent d07c392 commit f7dbe51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>com.milmove.trdmlambda</groupId>
<artifactId>trdm-lambda</artifactId>
<version>1.0.0.2</version>
<version>1.0.0.3</version>
<name>trdm java spring interface</name>
<description>Project for deploying a Java TRDM interfacer for TGET data.</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public Connection getConnection() throws SQLException {
.hostname(hostname)
.port(port)
.username(username)
.region("us-gov-west-1")
.build();

String authToken = utilities.generateAuthenticationToken(tokenRequest);
Expand Down

0 comments on commit f7dbe51

Please sign in to comment.