Hi,
Need help regarding hiding/masking S3 credentials that were submitted in the indexing request.
We are currently passing S3 access key and secret key in the indexing request. But we are having privacy/security issues as this credentials are being printed in the logs. Is there any way we can hide/mask the credentials in the logs. Or is there any other approach for this.
Below is the same indexing template that we are using.
"tuningConfig" : {
"type" : "hadoop", "jobProperties" : {
"fs.s3.awsAccessKeyId" : "ACCESS_KEY_ID",
"fs.s3n.awsAccessKeyId" : "ACCESS_KEY_ID",
"fs.s3.awsSecretAccessKey" : "SECRET_ACCESS_KEY",
"fs.s3n.awsSecretAccessKey" : "SECRET_ACCESS_KEY",
"fs.s3.impl" : "org.apache.hadoop.fs.s3native.NativeS3FileSystem",
"fs.s3n.impl" : "org.apache.hadoop.fs.s3native.NativeS3FileSystem"
}
}
Thanks