Skip to content

Commit 03c54fd

Browse files
authored
FIXES Object Storage and Terraform guide.en-gb.md
Minor spelling and punctuation fixes.
1 parent eabc3d4 commit 03c54fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $ export OVH_CONSUMER_KEY=Your_token(or_CK)
3131
$ export TF_VAR_OVH_PUBLIC_CLOUD_PROJECT_ID=Your_public_cloud_project_id
3232
```
3333

34-
**If you do not have your AWS CLI** configured, you should set dummy values with the following. This is due to a limitation in Terraform dependency graph for providers initialization (see this long lasting terraform [issue)](https://github.com/hashicorp/terraform/issues/2430)):
34+
**If you do not have your AWS CLI** configured, you should set dummy values with the following. This is due to a limitation in Terraform dependency graph for providers initialization (see this long lasting terraform [issue)](https://github.com/hashicorp/terraform/issues/2430):
3535

3636
```bash
3737
$ export AWS_ACCESS_KEY_ID="no_need_to_define_an_access_key"
@@ -67,7 +67,7 @@ $ terraform plan
6767
Now let's have a look at the content of the `main.tf` file:
6868

6969
- The *variable* block defines the region and s3 endpoint that are used to create the bucket. You can update it according to your needs : check this [page](/pages/storage_and_backup/object_storage/s3_location) to know what region / endpoints are available.
70-
- The *Providers* block defines 2 providers : ovh and Hashicorp AWS one. The first one is necessary to create the user whose identity / credentials will be used for the latest.
70+
- The *Providers* block defines 2 providers: ovh and Hashicorp AWS one. The first one is necessary to create the user whose identity / credentials will be used for the latest.
7171
- The *User / Credential* block defines the user & credential that are visible in the Settings > Users & Roles tab. They are needed to configure the Hashicorp AWS provider.
7272
- The Bucket block defines the bucket itself.
7373
- The Output defines the access & secret key that may be useful for CLI usage.
@@ -90,7 +90,7 @@ $ terraform destroy
9090

9191
> [!primary]
9292
>
93-
> - This script does not follow Terraform best practices to split the project in multiple files e.g. **`provider.tf`, `main.tf`, `variables.tf`, `outputs.tf`**, ... This has been done intentionnaly to avoid switching into multiples files for what is a really simple example.
93+
> - This script does not follow Terraform best practices to split the project in multiple files e.g. **`provider.tf`, `main.tf`, `variables.tf`, `outputs.tf`**, ... This has been done intentionally to avoid switching into multiple files for what is a really simple example.
9494
> - The secret that is created by this script is stored in the [local](https://developer.hashicorp.com/terraform/language/settings/backends/local) state back-end. If you use this back-end in production, make sure to consider the state file as a secret.
9595
9696
### Automating Object Storage policies with Terraform
@@ -131,7 +131,7 @@ $ terraform apply
131131

132132
Now you can go in the Console and check the "Object Storage" tab. You will see the bucket and the file.
133133

134-
You can also check the access right by using the AWS CLI with the 2 users that have the read / write & read-only access
134+
You can also check the access right by using the AWS CLI with the 2 users that have the read / write & read-only access.
135135

136136
#### Destroy
137137

0 commit comments

Comments
 (0)