You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The scaleway_easy_partitioning data source allows you to retrieve a ready-to-use partitioning schema for a BareMetal server. This schema can be used for custom installations with optional swap and extra partitions.
8
+
The scaleway_baremetal_partition_schema data source allows you to retrieve a ready-to-use partitioning schema for a BareMetal server. This schema can be used for custom installations with optional swap and extra partitions.
9
9
10
10
This data source simplifies the process of generating valid partitioning configurations, especially useful when dealing with OS and offer compatibility requirements.
11
11
12
+
## Partitioning Details
13
+
14
+
The partitioning schema generated by the `scaleway_baremetal_partition_schema` data source includes a root (`/`) partition that is **20GB** in size by default.
15
+
16
+
If additional storage is required, you can enable the `extra_partition` option to mount extra space on a custom path (e.g., `/data`).
17
+
18
+
12
19
## Example Usage
13
20
14
21
```hcl
15
-
data "scaleway_easy_partitioning" "default" {
22
+
data "scaleway_baremetal_partition_schema" "default" {
0 commit comments