Skip to content
Open
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
15 changes: 15 additions & 0 deletions website/docs/r/cloud_project_storage.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Create S3™* compatible storage container

## Example Usage

Create a S3™* compatible storage container in GRA region with versioning enabled:

```hcl
resource "ovh_cloud_project_storage" "storage" {
service_name = "<public cloud project ID>"
Expand All @@ -21,6 +23,19 @@ resource "ovh_cloud_project_storage" "storage" {
}
```

Create a S3™* compatible storage container in GRA region with encryption in AES256:

```hcl
resource "ovh_cloud_project_storage" "storage" {
service_name = "<public cloud project ID>"
region_name = "GRA"
name = "my-storage-via-tf"
encryption = {
sse_algorithm = "AES256"
}
}
```

<!-- schema generated by tfplugindocs -->
## Schema

Expand Down