Skip to content

Commit e3465b1

Browse files
authored
Merge branch 'master' into context_k8s
2 parents 30b754e + e6d678b commit e3465b1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ resource "scaleway_instance_server" "web" {
8787
8888
additional_volume_ids = [ scaleway_instance_volume.data.id ]
8989
90+
root_volume {
91+
# The local storage of a DEV1-L instance is 80 GB, subtract 30 GB from the additional l_ssd volume, then the root volume needs to be 50 GB.
92+
size_in_gb = 50
93+
}
94+
9095
security_group_id = scaleway_instance_security_group.www.id
9196
}
9297
```
@@ -198,7 +203,7 @@ terraform {
198203
Beware as no locking mechanism are yet supported.
199204
Using scaleway object storage as terraform backend is not suitable if you work in a team with a risk of simultaneous access to the same plan.
200205

201-
Note: For security reason it's not recommended to store secrets in terraform files. If you want to configure the backend with environnment var, you need to use `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` [source](https://www.terraform.io/docs/backends/types/s3.html#access_key).
206+
Note: For security reason it's not recommended to store secrets in terraform files. If you want to configure the backend with environment var, you need to use `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` [source](https://www.terraform.io/docs/backends/types/s3.html#access_key).
202207

203208
```bash
204209
export AWS_ACCESS_KEY_ID=$SCW_ACCESS_KEY

0 commit comments

Comments
 (0)