@@ -47,9 +47,6 @@ Please check the [Laravel support policy](https://laravel.com/docs/master/releas
47
47
'service_account_email' => env('STACKKIT_CLOUD_TASKS_SERVICE_EMAIL', ''),
48
48
'signed_audience' => env('STACKKIT_CLOUD_TASKS_SIGNED_AUDIENCE', true),
49
49
50
- // Optional
51
- 'credential_file' => env('STACKKIT_CLOUD_TASKS_CREDENTIAL_FILE', ''),
52
-
53
50
// Required when using AppEngine
54
51
'app_engine' => env('STACKKIT_APP_ENGINE_TASK', false),
55
52
'app_engine_service' => env('STACKKIT_APP_ENGINE_SERVICE', ''),
@@ -82,7 +79,6 @@ Please check the table below on what the values mean and what their value should
82
79
| ` STACKKIT_CLOUD_TASKS_PROJECT ` | The project your queue belongs to. |` my-project `
83
80
| ` STACKKIT_CLOUD_TASKS_LOCATION ` | The region where the project is hosted. |` europe-west6 `
84
81
| ` STACKKIT_CLOUD_TASKS_QUEUE ` | The default queue a job will be added to. |` emails `
85
- | ` STACKKIT_CLOUD_TASKS_CREDENTIAL_FILE ` (optional) | A json credential file to authenticate the connection (from outside AppEngine) |` project-123.json `
86
82
| ** App Engine**
87
83
| ` STACKKIT_APP_ENGINE_TASK ` (optional) | Set to true to use App Engine task (else a Http task will be used). Defaults to false. |` true `
88
84
| ` STACKKIT_APP_ENGINE_SERVICE ` (optional) | The App Engine service to handle the task (only if using App Engine task). |` api `
@@ -150,7 +146,7 @@ The dashboard is accessible at the URI: /cloud-tasks
150
146
<summary >Authentication</summary >
151
147
<br >
152
148
153
- Set the ` STACKKIT_CLOUD_TASKS_CREDENTIAL_FILE ` environment variable with a path to the credentials file.
149
+ Set the ` GOOGLE_APPLICATION_CREDENTIALS ` environment variable with a path to the credentials file.
154
150
155
151
More info: https://cloud.google.com/docs/authentication/production
156
152
0 commit comments