We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f80160 + 8a088d4 commit 3a9f93bCopy full SHA for 3a9f93b
src/Updater/S3Provider.php
@@ -10,8 +10,22 @@ public function __construct(protected array $config)
10
{
11
}
12
13
- public function providedEnvironmentVariables(): array
+ public function environmentVariables(): array
14
15
- return [];
+ return [
16
+ 'AWS_ACCESS_KEY_ID' => $this->config['key'],
17
+ 'AWS_SECRET_ACCESS_KEY' => $this->config['secret'],
18
+ ];
19
+ }
20
+
21
+ public function builderOptions(): array
22
+ {
23
24
+ 'provider' => 's3',
25
+ 'endpoint' => $this->config['endpoint'],
26
+ 'region' => $this->config['region'],
27
+ 'bucket' => $this->config['bucket'],
28
+ 'path' => $this->config['path'],
29
30
31
0 commit comments