From d5f25acb406e3e5f9f42149c423a7a975eb5b0d1 Mon Sep 17 00:00:00 2001 From: Marcel Jacek Date: Fri, 6 Feb 2026 14:28:09 +0100 Subject: [PATCH] docs(iaas): remove hint to experimental "network" --- docs/data-sources/network.md | 6 ++---- stackit/internal/services/iaas/network/datasource.go | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/data-sources/network.md b/docs/data-sources/network.md index dba50f60e..3e946e6f1 100644 --- a/docs/data-sources/network.md +++ b/docs/data-sources/network.md @@ -29,8 +29,7 @@ data "stackit_network" "example" { ### Optional -- `region` (String) Can only be used when experimental "network" is set. This is likely going to undergo significant changes or be removed in the future. -The resource region. If not defined, the provider region is used. +- `region` (String) The resource region. If not defined, the provider region is used. ### Read-Only @@ -51,5 +50,4 @@ The resource region. If not defined, the provider region is used. - `prefixes` (List of String, Deprecated) The prefixes of the network. This field is deprecated and will be removed soon, use `ipv4_prefixes` to read the prefixes of the IPv4 networks. - `public_ip` (String) The public IP of the network. - `routed` (Boolean) Shows if the network is routed and therefore accessible from other networks. -- `routing_table_id` (String) Can only be used when experimental "network" is set. This is likely going to undergo significant changes or be removed in the future. Use it at your own discretion. -The ID of the routing table associated with the network. +- `routing_table_id` (String) The ID of the routing table associated with the network. diff --git a/stackit/internal/services/iaas/network/datasource.go b/stackit/internal/services/iaas/network/datasource.go index 4197ee1f8..142666ca1 100644 --- a/stackit/internal/services/iaas/network/datasource.go +++ b/stackit/internal/services/iaas/network/datasource.go @@ -188,10 +188,10 @@ func (d *networkDataSource) Schema(_ context.Context, _ datasource.SchemaRequest "region": schema.StringAttribute{ // the region cannot be found, so it has to be passed Optional: true, - Description: "Can only be used when experimental \"network\" is set. This is likely going to undergo significant changes or be removed in the future.\nThe resource region. If not defined, the provider region is used.", + Description: "The resource region. If not defined, the provider region is used.", }, "routing_table_id": schema.StringAttribute{ - Description: "Can only be used when experimental \"network\" is set. This is likely going to undergo significant changes or be removed in the future. Use it at your own discretion.\nThe ID of the routing table associated with the network.", + Description: "The ID of the routing table associated with the network.", Computed: true, Validators: []validator.String{ validate.UUID(),