While deploying weaviate container we provide aws information in terms of environment. Weaviate uses this in case if the backup type is S3. Following are few environments:
environment:
ENABLE_MODULES: 'backup-filesystem,backup-s3'
AWS_ACCESS_KEY_ID: ''
AWS_SECRET_ACCESS_KEY: ''
AWS_REGION: ''
BACKUP_S3_BUCKET: ''
BACKUP_S3_PATH: 'weaviate/backups/'
BACKUP_S3_ENDPOINT: ''
Now, If run this weaviate container and create a weaviate_client object using:
weaviate_client = weaviate.Client(url=url)
Is there any way I can extract the above environment information from weaviate somehow? I have another container which uses this weaviate client internally. This container also uses above environment variables and the exact same values. Is there any way to extract these variable information from weaviate?