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
Once you have moved all the `default_pool` into their own object, you will need to import them. If your pool had the ID 11111111-1111-1111-1111-111111111111 in the `fr-par` region, you can import it by typing:
Copy file name to clipboardexpand all lines: docs/resources/k8s_pool.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
---
2
-
page_title: "Scaleway: scaleway_k8s_pool_beta"
2
+
page_title: "Scaleway: scaleway_k8s_pool"
3
3
description: |-
4
4
Manages Scaleway Kubernetes cluster pools.
5
5
---
6
6
7
-
# scaleway_k8s_pool_beta
7
+
# scaleway_k8s_pool
8
8
9
9
Creates and manages Scaleway Kubernetes cluster pools. For more information, see [the documentation](https://developers.scaleway.com/en/products/k8s/api/).
10
10
@@ -13,14 +13,14 @@ Creates and manages Scaleway Kubernetes cluster pools. For more information, see
13
13
### Basic
14
14
15
15
```hcl
16
-
resource "scaleway_k8s_cluster_beta" "jack" {
16
+
resource "scaleway_k8s_cluster" "jack" {
17
17
name = "jack"
18
18
version = "1.18.0"
19
19
cni = "cilium"
20
20
}
21
21
22
-
resource "scaleway_k8s_pool_beta" "bill" {
23
-
cluster_id = scaleway_k8s_cluster_beta.jack.id
22
+
resource "scaleway_k8s_pool" "bill" {
23
+
cluster_id = scaleway_k8s_cluster.jack.id
24
24
name = "bill"
25
25
node_type = "GP1-S"
26
26
size = 3
@@ -90,5 +90,5 @@ In addition to all above arguments, the following attributes are exported:
90
90
Kubernetes pools can be imported using the `{region}/{id}`, e.g.
0 commit comments