Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

MCLOUD-7153: Support for Remote Storage #8229

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/cloud/env/variables-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -666,3 +666,23 @@ stage:
deploy:
VERBOSE_COMMANDS: "-vv"
```

### `REMOTE_STORAGE`

- **Default**—_Not set_
- **Version**—Magento 2.4.2 and later

Configure a _storage adapter_ to store media files in a persistent, remote storage container using a storage service, such as AWS S3. Use the remote storage option to improve performance on Cloud projects with complex, multi-server configurations that must share resources. See [Enable storage adapter]({{site.baseurl}}/guides/v2.4/config-guide/remote-storage/config-remote-storage#enable-storage-adapter.html).

```yaml
stage:
deploy:
REMOTE_STORAGE:
driver: aws-s3 # Required
prefix: cloud # Optional
config:
bucket: my-bucket # Required
region: my-region # Required
key: my-key # Optional
secret: my-secret-key # Optional
```