Skip to content

Commit

Permalink
updating parsing of aws secret key
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryGeorgist committed Sep 12, 2022
1 parent 8e484db commit 62f9e0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ publishing {
}

group 'mil.army.usace.hec'
version '0.0.4'
version '0.0.5'
}
2 changes: 1 addition & 1 deletion src/main/java/usace/wat/plugin/Utilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public static void InitalizeFromEnv(){
acfg.aws_config_name = System.getenv("AWS_CONFIG_NAME");
acfg.is_primary_config = true;
acfg.aws_access_key_id = System.getenv("AWS_ACCESS_KEY_ID");
acfg.aws_secret_access_key_id = System.getenv("AWS_SECRET_ACCESS_KEY_ID");
acfg.aws_secret_access_key_id = System.getenv("AWS_SECRET_ACCESS_KEY");
acfg.aws_region = System.getenv("AWS_REGION");
acfg.aws_bucket = System.getenv("AWS_BUCKET");
acfg.aws_mock = Boolean.parseBoolean(System.getenv("AWS_MOCK"));//convert to boolean;
Expand Down

0 comments on commit 62f9e0c

Please sign in to comment.