A EnvMinio retrieves credentials from the environment variables of the running process. EnvMinioironment credentials never expire. Environment variables used: * Access Key ID: MINIO_ACCESS_KEY. * Secret Access Key: MINIO_SECRET_KEY. * Access Key ID: MINIO_ROOT_USER. * Secret Access Key: MI
| 29 | // * Access Key ID: MINIO_ROOT_USER. |
| 30 | // * Secret Access Key: MINIO_ROOT_PASSWORD. |
| 31 | type EnvMinio struct { |
| 32 | retrieved bool |
| 33 | } |
| 34 | |
| 35 | // NewEnvMinio returns a pointer to a new Credentials object |
| 36 | // wrapping the environment variable provider. |
nothing calls this directly
no outgoing calls
no test coverage detected