heroku openした際にログ上で下記のエラーが見つかりました
class:Engine': YAML syntax error occurred while parsing /app/config/storage.yml. Please note that YAML must be consistently indented using spaces. Tabs are not allowed. Error: (<unknown>): did not find expected key while parsing a block mapping at line 1 column 1 (RuntimeError)
実際に翻訳すると
<class:Engine> ':/ app / config / storage.ymlの解析中にYAML構文エラーが発生しました。 YAMLはスペースを使用して一貫してインデントする必要があることに注意してください。 タブは許可されていません。 エラー:(<不明>):1行1列のブロックマッピングの解析中に予期されたキーが見つかりませんでした(RuntimeError)
該当の箇所を探し空白を以下のように全て無くしました。
test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>
local:
service: Disk
root: <%= Rails.root.join("storage") %>
amazon:
service: S3
region: ap-northeast-1
bucket: testtesttest87654
access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] %>
secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
amazon:
service: S3
access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
region: us-east-1
bucket: your_own_bucket
Remember not to checkin your GCS keyfile to a repository
google:
service: GCS
project: your_project
credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
bucket: your_own_bucket
Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
microsoft:
service: AzureStorage
storage_account_name: your_account_name
storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
container: your_container_name
mirror:
service: Mirror
primary: local
mirrors: [ amazon, google, microsoft ]
しかし、結果は上記の通りです。
どなたか解決方法をご存知の方がいらっしゃいましたらご教授のほどよろしくお願いいたします。
あなたの回答
tips
プレビュー