fix: GCS credentials dont need to be parsed as JSON (#1429)
This commit is contained in:
parent
c40ba0d3dd
commit
d5a126745e
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ amazon:
|
||||||
google:
|
google:
|
||||||
service: GCS
|
service: GCS
|
||||||
project: <%= ENV.fetch('GCS_PROJECT', '') %>
|
project: <%= ENV.fetch('GCS_PROJECT', '') %>
|
||||||
credentials: <%= ENV.fetch('GCS_CREDENTIALS', '').to_json %>
|
credentials: <%= ENV.fetch('GCS_CREDENTIALS', '') %>
|
||||||
bucket: <%= ENV.fetch('GCS_BUCKET', '') %>
|
bucket: <%= ENV.fetch('GCS_BUCKET', '') %>
|
||||||
|
|
||||||
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
||||||
|
|
Loading…
Reference in a new issue