Merge branch 'pr/hide-s3-repositories-credentials'
This commit is contained in:
commit
e8ddf5de2f
|
@ -67,13 +67,13 @@ public class S3Repository extends BlobStoreRepository {
|
||||||
* @see CLOUD_S3#KEY_SETTING
|
* @see CLOUD_S3#KEY_SETTING
|
||||||
*/
|
*/
|
||||||
Setting<String> KEY_SETTING =
|
Setting<String> KEY_SETTING =
|
||||||
new Setting<>("repositories.s3.access_key", CLOUD_S3.KEY_SETTING, Function.identity(), Property.NodeScope);
|
new Setting<>("repositories.s3.access_key", CLOUD_S3.KEY_SETTING, Function.identity(), Property.NodeScope, Property.Filtered);
|
||||||
/**
|
/**
|
||||||
* repositories.s3.secret_key: AWS Secret key specific for all S3 Repositories API calls. Defaults to cloud.aws.s3.secret_key.
|
* repositories.s3.secret_key: AWS Secret key specific for all S3 Repositories API calls. Defaults to cloud.aws.s3.secret_key.
|
||||||
* @see CLOUD_S3#SECRET_SETTING
|
* @see CLOUD_S3#SECRET_SETTING
|
||||||
*/
|
*/
|
||||||
Setting<String> SECRET_SETTING =
|
Setting<String> SECRET_SETTING =
|
||||||
new Setting<>("repositories.s3.secret_key", CLOUD_S3.SECRET_SETTING, Function.identity(), Property.NodeScope);
|
new Setting<>("repositories.s3.secret_key", CLOUD_S3.SECRET_SETTING, Function.identity(), Property.NodeScope, Property.Filtered);
|
||||||
/**
|
/**
|
||||||
* repositories.s3.region: Region specific for all S3 Repositories API calls. Defaults to cloud.aws.s3.region.
|
* repositories.s3.region: Region specific for all S3 Repositories API calls. Defaults to cloud.aws.s3.region.
|
||||||
* @see CLOUD_S3#REGION_SETTING
|
* @see CLOUD_S3#REGION_SETTING
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Integration tests for Repository S3 component
|
# Integration tests for Repository S3 component
|
||||||
#
|
#
|
||||||
"S3 repository can be registereed":
|
"S3 repository can be registered":
|
||||||
- do:
|
- do:
|
||||||
snapshot.create_repository:
|
snapshot.create_repository:
|
||||||
repository: test_repo_s3_1
|
repository: test_repo_s3_1
|
||||||
|
|
Loading…
Reference in New Issue