From b4c0e64eec9ffd2a765236af7ccab840f275b21b Mon Sep 17 00:00:00 2001 From: bm-stackit Date: Fri, 19 Sep 2025 10:11:13 +0200 Subject: [PATCH] chore(docs): changed ipv4 prefix in loadbalancer resource example to represent a working example (#999) --- docs/resources/loadbalancer.md | 4 ++-- examples/resources/stackit_loadbalancer/resource.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/resources/loadbalancer.md b/docs/resources/loadbalancer.md index cec3b5b4..87b33562 100644 --- a/docs/resources/loadbalancer.md +++ b/docs/resources/loadbalancer.md @@ -119,14 +119,14 @@ resource "stackit_loadbalancer" "example" { resource "stackit_network" "lb_network" { project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" name = "lb-network-example" - ipv4_prefix = "192.168.1.0/24" + ipv4_prefix = "192.168.10.0/25" ipv4_nameservers = ["8.8.8.8"] } resource "stackit_network" "target_network" { project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" name = "target-network-example" - ipv4_prefix = "192.168.2.0/24" + ipv4_prefix = "192.168.10.0/25" ipv4_nameservers = ["8.8.8.8"] } diff --git a/examples/resources/stackit_loadbalancer/resource.tf b/examples/resources/stackit_loadbalancer/resource.tf index 372c922d..f476e29c 100644 --- a/examples/resources/stackit_loadbalancer/resource.tf +++ b/examples/resources/stackit_loadbalancer/resource.tf @@ -100,14 +100,14 @@ resource "stackit_loadbalancer" "example" { resource "stackit_network" "lb_network" { project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" name = "lb-network-example" - ipv4_prefix = "192.168.1.0/24" + ipv4_prefix = "192.168.10.0/25" ipv4_nameservers = ["8.8.8.8"] } resource "stackit_network" "target_network" { project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" name = "target-network-example" - ipv4_prefix = "192.168.2.0/24" + ipv4_prefix = "192.168.10.0/25" ipv4_nameservers = ["8.8.8.8"] }