Skip to content

Commit 9d08f97

Browse files
committed
fix many typos in my previous commit
1 parent e4cf23c commit 9d08f97

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/guides/backend_guide.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ data "scaleway_rdb_instance" "mybackend" {
180180

181181
## Using s3 compatible backend
182182

183-
You can use scaleway object-storage bucket as an S3 compatible backend to store your terraform tfstate file just like you would do with AWS s3
183+
You can use scaleway object-storage bucket as an S3 compatible backend to store your terraform .tfstate file just like you would do with AWS s3
184184

185-
### by using hardcoded credetials (NOT RECOMENDED)
185+
### by using hardcoded credetials (NOT RECOMMENDED)
186186
```
187187
terraform {
188188
backend "s3" {
@@ -200,7 +200,7 @@ terraform {
200200
}
201201
```
202202

203-
### by using credetials environment variables
203+
### by using credentials environment variables
204204
```
205205
$ export SCW_ACCESS_KEY="XXXXXXXXXXX"
206206
$ export SCW_SECRET_KEY="YYYYYYYYYYY"
@@ -218,15 +218,15 @@ terraform {
218218
```
219219

220220
### and with the shared congfiguration file ?
221-
scaleway scw cli privide you with a credential file
221+
scaleway scw-cli provide you with a credential file
222222
>~/$HOME/.config/scw/config.yaml
223223
224-
to generate your credential fil you can run scw init at first run or login for every new key pairs generated
224+
to generate your credential file you can run scw init at first run or login for every new key pairs generated
225225
```
226226
scw login
227227
```
228228

229-
it will generate scw shared configuration fil folowinng this format
229+
it will generate scw shared configuration file folowinng this format
230230
```
231231
profiles:
232232
myProfile1:
@@ -242,7 +242,7 @@ profiles:
242242

243243
actualy terraform backend "s3" is not aware of any other kind of s3 compatible bucket and is by default assuming you ar using aws's S3 service
244244

245-
so in order to read scw ccredentials, do not try to use `profile = myProfile1` it will not work, unless you copy scw credentials into aws shared configuration file
245+
so in order to read scw ccredentials, do not try to use `profile = myProfile1` it will not work, unless you can copy your scw credentials into aws shared configuration file
246246

247247
>~/$HOME/.aws/credentials
248248
@@ -268,4 +268,4 @@ terraform {
268268
}
269269
}
270270
```
271-
now run terraform init and backend s3 should be able to use scaleway object storage instead of aws s3.
271+
now run terraform init and the s3 backend should be able to use scaleway object storage instead of aws s3.

0 commit comments

Comments
 (0)