INTRODUCTION
An eGov core application which handles uploading different kinds of files to server including images and different document types.
...
Following are the variables that needs to be populated based on the aws/azure account you are integrating with.
AWS S3:
isS3Enabled - informing the application whether AWS is available or not.
Aws.region - region of the server
Aws.key - key provided by the aws user account
Aws.secretkey - the secret key associated with the above mentioned key
minio.url=http://minio.backbone:9000(Minio server end point)
isS3Enabled=true(Should be true)
aws.secretkey={minio_secretkey}
aws.key={minio_accesskey}
fixed.bucketname=egov-rainmaker(Minio bucket name)
minio.source=minio
minio.url=https://s3.amazonaws.com
isS3Enabled=true(Should be true)
aws.secretkey={s3_secretkey}
aws.key={s3_accesskey}
fixed.bucketname=egov-rainmaker(S3 bucket name)
minio.source=minio
AZURE:
isAzureStorageEnabled - informing the application whether Azure is available or not
...