From 883b31d04ceab4b443d0ea80fc61b016adf1690f Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Wed, 13 Nov 2024 14:59:00 +0100 Subject: [PATCH 1/3] doc: use scaleway_lb_ip for ip_ids of a scaleway_lb --- docs/resources/lb.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/resources/lb.md b/docs/resources/lb.md index 98934462bf..72807451ff 100644 --- a/docs/resources/lb.md +++ b/docs/resources/lb.md @@ -161,6 +161,8 @@ The following arguments are supported: - `ip_ids` - (Optional) The List of IP IDs to attach to the Load Balancer. +~> **Important:** Make sure to use a [`scaleway_lb_ip`](../lb_ip.md) resource to create the IPs. + - `ip_id` - (Deprecated) The ID of the associated Load Balancer IP. See below. ~> **Important:** Updates to `ip_id` will recreate the Load Balancer. From 5372d25db23ead671d251882f40b18c2c1e149ad Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Wed, 13 Nov 2024 15:23:29 +0100 Subject: [PATCH 2/3] doc: specify that a default security group can be created --- docs/resources/instance_server.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/resources/instance_server.md b/docs/resources/instance_server.md index 4bef9c75b1..250fc8e35c 100644 --- a/docs/resources/instance_server.md +++ b/docs/resources/instance_server.md @@ -201,6 +201,8 @@ To retrieve more information by label please use: ```scw marketplace image get l - `security_group_id` - (Optional) The [security group](https://www.scaleway.com/en/developers/api/instance/#path-security-groups-update-a-security-group9) the server is attached to. +~> **Important:** If you don't specify a security group, a default one will be created, which won't be tracked by Terraform unless you import it. + - `placement_group_id` - (Optional) The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-security-groups-update-a-security-group the server is attached to. From bd394b0615440be09603ee461a619c66e94e4c83 Mon Sep 17 00:00:00 2001 From: Alexandre Hamez <199517+ahamez@users.noreply.github.com> Date: Wed, 13 Nov 2024 15:50:55 +0100 Subject: [PATCH 3/3] fix: correct link --- docs/resources/lb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/resources/lb.md b/docs/resources/lb.md index 72807451ff..32c2fca302 100644 --- a/docs/resources/lb.md +++ b/docs/resources/lb.md @@ -161,7 +161,7 @@ The following arguments are supported: - `ip_ids` - (Optional) The List of IP IDs to attach to the Load Balancer. -~> **Important:** Make sure to use a [`scaleway_lb_ip`](../lb_ip.md) resource to create the IPs. +~> **Important:** Make sure to use a [`scaleway_lb_ip`](./lb_ip.md) resource to create the IPs. - `ip_id` - (Deprecated) The ID of the associated Load Balancer IP. See below.