Skip to content

Commit 3808368

Browse files
committed
add var and links
1 parent cda5fa3 commit 3808368

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

pages/storage_and_backup/object_storage/s3_terraform/guide.en-gb.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ updated: 2025-04-10
55

66
## Objective
77

8-
This tutorial will help you automate and orchestrate actions to use the Object Storage - S3 API with Terraform. Terraform is an open source tool for orchestrating the provisioning and provisioning of resources.
8+
This tutorial will help you automate and orchestrate actions to use the [Object Storage](/pages/storage_and_backup/object_storage/s3_getting_started_with_object_storage) - S3 API with Terraform. Terraform is an open source tool for orchestrating the provisioning and provisioning of resources.
99

1010
## Requirements
1111

@@ -42,6 +42,8 @@ You can also use this information in Terraform resource definition files.
4242

4343
## Instructions
4444

45+
If you would like to access the provider's documentation on Object Storage, [click here](https://registry.terraform.io/providers/ovh/ovh/latest/docs/resources/cloud_project_storage.){.external}
46+
4547
### Configuration
4648

4749
First, create a `provider.tf` file with the minimum version, the European endpoint (“ovh-eu”) and the keys you obtained in this guide.
@@ -82,6 +84,12 @@ resource "ovh_cloud_project_storage" "my-bucket" {
8284
service_name = "my_service_name" # Replace with your OVHcloud project ID
8385
region_name = "GRA" # Replace with the desired region in uppercase.
8486
name = "object-storage-simple"
87+
versioning = {
88+
status = "enabled"
89+
}
90+
encryption = {
91+
sse_algorithm = "AES256"
92+
}
8593
}
8694
```
8795

pages/storage_and_backup/object_storage/s3_terraform/guide.fr-fr.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ updated: 2025-04-10
55

66
## Objectif
77

8-
Ce tutoriel va vous permettre d'automatiser et d'orchestrer des actions pour utiliser l'Object Storage - S3 API avec Terraform. Terraform est un outil open source permettant d'orchestrer la provision et la mise à disposition des ressources.
8+
Ce tutoriel va vous permettre d'automatiser et d'orchestrer des actions pour utiliser l'[Object Storage](/pages/storage_and_backup/object_storage/s3_getting_started_with_object_storage) - S3 API avec Terraform. Terraform est un outil open source permettant d'orchestrer la provision et la mise à disposition des ressources.
99

1010
## Prérequis
1111

@@ -42,6 +42,8 @@ Vous utiliserez également ces informations dans les fichiers de définition des
4242

4343
## En pratique
4444

45+
Si vous souhaitez accéder à la documentation du provider sur Object Storage, [cliquez-ici](https://registry.terraform.io/providers/ovh/ovh/latest/docs/resources/cloud_project_storage.){.external}
46+
4547
### Configuration
4648

4749
Tout d'abord, créez un fichier `provider.tf` avec la version minimale, le point de terminaison européen ("ovh-eu") et les clés que vous avez obtenues dans ce guide.
@@ -82,6 +84,12 @@ resource "ovh_cloud_project_storage" "my-bucket" {
8284
service_name = "my_service_name" # Remplacer par votre OVHcloud project ID
8385
region_name = "GRA" # Remplacer par la région voulue en majuscule.
8486
name = "object-storage-simple"
87+
versioning = {
88+
status = "enabled"
89+
}
90+
encryption = {
91+
sse_algorithm = "AES256"
92+
}
8593
}
8694
```
8795

0 commit comments

Comments
 (0)