published on Monday, Aug 17, 2026 by stackitcloud
published on Monday, Aug 17, 2026 by stackitcloud
VPC Routing table static route resource schema. Must have a region specified in the provider configuration.
This resource is part of the experimental feature vpc and is likely going to undergo significant changes or be removed in the future. Use it at your own discretion.
Example Usage
resource "stackit_vpc_routing_table_static_route" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
vpc_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
routing_table_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
destination = {
type = "cidrv4"
value = "192.168.0.0/24"
}
nexthop = {
type = "ipv4"
value = "10.0.0.8"
}
labels = {
"key" = "value"
}
}
Create VpcRoutingTableStaticRoute Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VpcRoutingTableStaticRoute(name: string, args: VpcRoutingTableStaticRouteArgs, opts?: CustomResourceOptions);@overload
def VpcRoutingTableStaticRoute(resource_name: str,
args: VpcRoutingTableStaticRouteArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VpcRoutingTableStaticRoute(resource_name: str,
opts: Optional[ResourceOptions] = None,
destination: Optional[VpcRoutingTableStaticRouteDestinationArgs] = None,
nexthop: Optional[VpcRoutingTableStaticRouteNexthopArgs] = None,
project_id: Optional[str] = None,
routing_table_id: Optional[str] = None,
vpc_id: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
region: Optional[str] = None,
timeouts: Optional[VpcRoutingTableStaticRouteTimeoutsArgs] = None)func NewVpcRoutingTableStaticRoute(ctx *Context, name string, args VpcRoutingTableStaticRouteArgs, opts ...ResourceOption) (*VpcRoutingTableStaticRoute, error)public VpcRoutingTableStaticRoute(string name, VpcRoutingTableStaticRouteArgs args, CustomResourceOptions? opts = null)
public VpcRoutingTableStaticRoute(String name, VpcRoutingTableStaticRouteArgs args)
public VpcRoutingTableStaticRoute(String name, VpcRoutingTableStaticRouteArgs args, CustomResourceOptions options)
type: stackit:VpcRoutingTableStaticRoute
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "stackit_vpc_routing_table_static_route" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args VpcRoutingTableStaticRouteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VpcRoutingTableStaticRouteArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VpcRoutingTableStaticRouteArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpcRoutingTableStaticRouteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VpcRoutingTableStaticRouteArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var vpcRoutingTableStaticRouteResource = new Stackit.VpcRoutingTableStaticRoute("vpcRoutingTableStaticRouteResource", new()
{
Destination = new Stackit.Inputs.VpcRoutingTableStaticRouteDestinationArgs
{
Type = "string",
Value = "string",
},
Nexthop = new Stackit.Inputs.VpcRoutingTableStaticRouteNexthopArgs
{
Type = "string",
Value = "string",
},
ProjectId = "string",
RoutingTableId = "string",
VpcId = "string",
Labels =
{
{ "string", "string" },
},
Region = "string",
Timeouts = new Stackit.Inputs.VpcRoutingTableStaticRouteTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := stackit.NewVpcRoutingTableStaticRoute(ctx, "vpcRoutingTableStaticRouteResource", &stackit.VpcRoutingTableStaticRouteArgs{
Destination: &stackit.VpcRoutingTableStaticRouteDestinationArgs{
Type: pulumi.String("string"),
Value: pulumi.String("string"),
},
Nexthop: &stackit.VpcRoutingTableStaticRouteNexthopArgs{
Type: pulumi.String("string"),
Value: pulumi.String("string"),
},
ProjectId: pulumi.String("string"),
RoutingTableId: pulumi.String("string"),
VpcId: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Region: pulumi.String("string"),
Timeouts: &stackit.VpcRoutingTableStaticRouteTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "stackit_vpc_routing_table_static_route" "vpcRoutingTableStaticRouteResource" {
lifecycle {
create_before_destroy = true
}
destination = {
type = "string"
value = "string"
}
nexthop = {
type = "string"
value = "string"
}
project_id = "string"
routing_table_id = "string"
vpc_id = "string"
labels = {
"string" = "string"
}
region = "string"
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
}
var vpcRoutingTableStaticRouteResource = new VpcRoutingTableStaticRoute("vpcRoutingTableStaticRouteResource", VpcRoutingTableStaticRouteArgs.builder()
.destination(VpcRoutingTableStaticRouteDestinationArgs.builder()
.type("string")
.value("string")
.build())
.nexthop(VpcRoutingTableStaticRouteNexthopArgs.builder()
.type("string")
.value("string")
.build())
.projectId("string")
.routingTableId("string")
.vpcId("string")
.labels(Map.of("string", "string"))
.region("string")
.timeouts(VpcRoutingTableStaticRouteTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
vpc_routing_table_static_route_resource = stackit.VpcRoutingTableStaticRoute("vpcRoutingTableStaticRouteResource",
destination={
"type": "string",
"value": "string",
},
nexthop={
"type": "string",
"value": "string",
},
project_id="string",
routing_table_id="string",
vpc_id="string",
labels={
"string": "string",
},
region="string",
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const vpcRoutingTableStaticRouteResource = new stackit.VpcRoutingTableStaticRoute("vpcRoutingTableStaticRouteResource", {
destination: {
type: "string",
value: "string",
},
nexthop: {
type: "string",
value: "string",
},
projectId: "string",
routingTableId: "string",
vpcId: "string",
labels: {
string: "string",
},
region: "string",
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: stackit:VpcRoutingTableStaticRoute
properties:
destination:
type: string
value: string
labels:
string: string
nexthop:
type: string
value: string
projectId: string
region: string
routingTableId: string
timeouts:
create: string
delete: string
read: string
update: string
vpcId: string
VpcRoutingTableStaticRoute Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VpcRoutingTableStaticRoute resource accepts the following input properties:
- Destination
Vpc
Routing Table Static Route Destination - The destination of the static route.
- Nexthop
Vpc
Routing Table Static Route Nexthop - The nexthop of the static route.
- Project
Id string - STACKIT Project ID to which the static route is associated.
- Routing
Table stringId - The routing table ID to which the static route is associated.
- Vpc
Id string - The VPC ID to which the static route is associated.
- Labels Dictionary<string, string>
- Labels are key-value string pairs which can be attached to a resource container
- Region string
- The region of the static route.
- Timeouts
Vpc
Routing Table Static Route Timeouts
- Destination
Vpc
Routing Table Static Route Destination Args - The destination of the static route.
- Nexthop
Vpc
Routing Table Static Route Nexthop Args - The nexthop of the static route.
- Project
Id string - STACKIT Project ID to which the static route is associated.
- Routing
Table stringId - The routing table ID to which the static route is associated.
- Vpc
Id string - The VPC ID to which the static route is associated.
- Labels map[string]string
- Labels are key-value string pairs which can be attached to a resource container
- Region string
- The region of the static route.
- Timeouts
Vpc
Routing Table Static Route Timeouts Args
- destination object
- The destination of the static route.
- nexthop object
- The nexthop of the static route.
- project_
id string - STACKIT Project ID to which the static route is associated.
- routing_
table_ stringid - The routing table ID to which the static route is associated.
- vpc_
id string - The VPC ID to which the static route is associated.
- labels map(string)
- Labels are key-value string pairs which can be attached to a resource container
- region string
- The region of the static route.
- timeouts object
- destination
Vpc
Routing Table Static Route Destination - The destination of the static route.
- nexthop
Vpc
Routing Table Static Route Nexthop - The nexthop of the static route.
- project
Id String - STACKIT Project ID to which the static route is associated.
- routing
Table StringId - The routing table ID to which the static route is associated.
- vpc
Id String - The VPC ID to which the static route is associated.
- labels Map<String,String>
- Labels are key-value string pairs which can be attached to a resource container
- region String
- The region of the static route.
- timeouts
Vpc
Routing Table Static Route Timeouts
- destination
Vpc
Routing Table Static Route Destination - The destination of the static route.
- nexthop
Vpc
Routing Table Static Route Nexthop - The nexthop of the static route.
- project
Id string - STACKIT Project ID to which the static route is associated.
- routing
Table stringId - The routing table ID to which the static route is associated.
- vpc
Id string - The VPC ID to which the static route is associated.
- labels {[key: string]: string}
- Labels are key-value string pairs which can be attached to a resource container
- region string
- The region of the static route.
- timeouts
Vpc
Routing Table Static Route Timeouts
- destination
Vpc
Routing Table Static Route Destination Args - The destination of the static route.
- nexthop
Vpc
Routing Table Static Route Nexthop Args - The nexthop of the static route.
- project_
id str - STACKIT Project ID to which the static route is associated.
- routing_
table_ strid - The routing table ID to which the static route is associated.
- vpc_
id str - The VPC ID to which the static route is associated.
- labels Mapping[str, str]
- Labels are key-value string pairs which can be attached to a resource container
- region str
- The region of the static route.
- timeouts
Vpc
Routing Table Static Route Timeouts Args
- destination Property Map
- The destination of the static route.
- nexthop Property Map
- The nexthop of the static route.
- project
Id String - STACKIT Project ID to which the static route is associated.
- routing
Table StringId - The routing table ID to which the static route is associated.
- vpc
Id String - The VPC ID to which the static route is associated.
- labels Map<String>
- Labels are key-value string pairs which can be attached to a resource container
- region String
- The region of the static route.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the VpcRoutingTableStaticRoute resource produces the following output properties:
Look up Existing VpcRoutingTableStaticRoute Resource
Get an existing VpcRoutingTableStaticRoute resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VpcRoutingTableStaticRouteState, opts?: CustomResourceOptions): VpcRoutingTableStaticRoute@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
destination: Optional[VpcRoutingTableStaticRouteDestinationArgs] = None,
labels: Optional[Mapping[str, str]] = None,
nexthop: Optional[VpcRoutingTableStaticRouteNexthopArgs] = None,
project_id: Optional[str] = None,
region: Optional[str] = None,
route_id: Optional[str] = None,
routing_table_id: Optional[str] = None,
timeouts: Optional[VpcRoutingTableStaticRouteTimeoutsArgs] = None,
vpc_id: Optional[str] = None) -> VpcRoutingTableStaticRoutefunc GetVpcRoutingTableStaticRoute(ctx *Context, name string, id IDInput, state *VpcRoutingTableStaticRouteState, opts ...ResourceOption) (*VpcRoutingTableStaticRoute, error)public static VpcRoutingTableStaticRoute Get(string name, Input<string> id, VpcRoutingTableStaticRouteState? state, CustomResourceOptions? opts = null)public static VpcRoutingTableStaticRoute get(String name, Output<String> id, VpcRoutingTableStaticRouteState state, CustomResourceOptions options)resources: _: type: stackit:VpcRoutingTableStaticRoute get: id: ${id}import {
to = stackit_vpc_routing_table_static_route.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Destination
Vpc
Routing Table Static Route Destination - The destination of the static route.
- Labels Dictionary<string, string>
- Labels are key-value string pairs which can be attached to a resource container
- Nexthop
Vpc
Routing Table Static Route Nexthop - The nexthop of the static route.
- Project
Id string - STACKIT Project ID to which the static route is associated.
- Region string
- The region of the static route.
- Route
Id string - The static route ID.
- Routing
Table stringId - The routing table ID to which the static route is associated.
- Timeouts
Vpc
Routing Table Static Route Timeouts - Vpc
Id string - The VPC ID to which the static route is associated.
- Destination
Vpc
Routing Table Static Route Destination Args - The destination of the static route.
- Labels map[string]string
- Labels are key-value string pairs which can be attached to a resource container
- Nexthop
Vpc
Routing Table Static Route Nexthop Args - The nexthop of the static route.
- Project
Id string - STACKIT Project ID to which the static route is associated.
- Region string
- The region of the static route.
- Route
Id string - The static route ID.
- Routing
Table stringId - The routing table ID to which the static route is associated.
- Timeouts
Vpc
Routing Table Static Route Timeouts Args - Vpc
Id string - The VPC ID to which the static route is associated.
- destination object
- The destination of the static route.
- labels map(string)
- Labels are key-value string pairs which can be attached to a resource container
- nexthop object
- The nexthop of the static route.
- project_
id string - STACKIT Project ID to which the static route is associated.
- region string
- The region of the static route.
- route_
id string - The static route ID.
- routing_
table_ stringid - The routing table ID to which the static route is associated.
- timeouts object
- vpc_
id string - The VPC ID to which the static route is associated.
- destination
Vpc
Routing Table Static Route Destination - The destination of the static route.
- labels Map<String,String>
- Labels are key-value string pairs which can be attached to a resource container
- nexthop
Vpc
Routing Table Static Route Nexthop - The nexthop of the static route.
- project
Id String - STACKIT Project ID to which the static route is associated.
- region String
- The region of the static route.
- route
Id String - The static route ID.
- routing
Table StringId - The routing table ID to which the static route is associated.
- timeouts
Vpc
Routing Table Static Route Timeouts - vpc
Id String - The VPC ID to which the static route is associated.
- destination
Vpc
Routing Table Static Route Destination - The destination of the static route.
- labels {[key: string]: string}
- Labels are key-value string pairs which can be attached to a resource container
- nexthop
Vpc
Routing Table Static Route Nexthop - The nexthop of the static route.
- project
Id string - STACKIT Project ID to which the static route is associated.
- region string
- The region of the static route.
- route
Id string - The static route ID.
- routing
Table stringId - The routing table ID to which the static route is associated.
- timeouts
Vpc
Routing Table Static Route Timeouts - vpc
Id string - The VPC ID to which the static route is associated.
- destination
Vpc
Routing Table Static Route Destination Args - The destination of the static route.
- labels Mapping[str, str]
- Labels are key-value string pairs which can be attached to a resource container
- nexthop
Vpc
Routing Table Static Route Nexthop Args - The nexthop of the static route.
- project_
id str - STACKIT Project ID to which the static route is associated.
- region str
- The region of the static route.
- route_
id str - The static route ID.
- routing_
table_ strid - The routing table ID to which the static route is associated.
- timeouts
Vpc
Routing Table Static Route Timeouts Args - vpc_
id str - The VPC ID to which the static route is associated.
- destination Property Map
- The destination of the static route.
- labels Map<String>
- Labels are key-value string pairs which can be attached to a resource container
- nexthop Property Map
- The nexthop of the static route.
- project
Id String - STACKIT Project ID to which the static route is associated.
- region String
- The region of the static route.
- route
Id String - The static route ID.
- routing
Table StringId - The routing table ID to which the static route is associated.
- timeouts Property Map
- vpc
Id String - The VPC ID to which the static route is associated.
Supporting Types
VpcRoutingTableStaticRouteDestination, VpcRoutingTableStaticRouteDestinationArgs
VpcRoutingTableStaticRouteNexthop, VpcRoutingTableStaticRouteNexthopArgs
VpcRoutingTableStaticRouteTimeouts, VpcRoutingTableStaticRouteTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
In Terraform v1.5.0 and later, the + "" + import + “" + block can be used with the + "” + id + “" + attribute, for example:
# Only use the import statement, if you want to import an existing static route
import {
to = stackit_vpc_routing_table_static_route.import-example
id = "${var.project_id},${var.vpc_id},${var.region},${var.routing_table_id},${var.route_id}"
}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- stackit stackitcloud/pulumi-stackit
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
stackitTerraform Provider.
published on Monday, Aug 17, 2026 by stackitcloud