Skip to content

Commit

Permalink
Deprecate AWS v1 API integration modules #24
Browse files Browse the repository at this point in the history
* upgrade messages in module descriptions
  • Loading branch information
andrus committed Nov 25, 2023
1 parent 3368c29 commit 3fefa6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AwsS3ModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new AwsS3Module())
.provider(this)
.description("Provides integration with AWS S3 client v1.")
.description("Deprecated and should be replaced with 'bootique-aws2-s3'.")
.build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AwsSecretsModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new AwsSecretsModule())
.provider(this)
.description("Provides integration with AWS Secrets client v1.")
.description("Deprecated and should be replaced with 'bootique-aws2-secrets'.")
.config("awssecrets", AwsSecretsFactory.class)
.build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class AwsModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new AwsModule())
.provider(this)
.description("Provides integration with AWS client v1.")
.description("Deprecated and should be replaced with 'bootique-aws2'.")
.config("aws", AwsConfigFactory.class)
.build();
}
Expand Down

0 comments on commit 3fefa6e

Please sign in to comment.