1. Registry
  2. Packages
  3. stackit
  4. API Docs
  5. VpcRoutingTableStaticRoute
Viewing docs for stackit v0.0.7
published on Monday, Aug 17, 2026 by stackitcloud
stackit logo
Viewing docs for stackit v0.0.7
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 VpcRoutingTableStaticRouteDestination
    The destination of the static route.
    Nexthop VpcRoutingTableStaticRouteNexthop
    The nexthop of the static route.
    ProjectId string
    STACKIT Project ID to which the static route is associated.
    RoutingTableId string
    The routing table ID to which the static route is associated.
    VpcId 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 VpcRoutingTableStaticRouteTimeouts
    Destination VpcRoutingTableStaticRouteDestinationArgs
    The destination of the static route.
    Nexthop VpcRoutingTableStaticRouteNexthopArgs
    The nexthop of the static route.
    ProjectId string
    STACKIT Project ID to which the static route is associated.
    RoutingTableId string
    The routing table ID to which the static route is associated.
    VpcId 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 VpcRoutingTableStaticRouteTimeoutsArgs
    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_id string
    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 VpcRoutingTableStaticRouteDestination
    The destination of the static route.
    nexthop VpcRoutingTableStaticRouteNexthop
    The nexthop of the static route.
    projectId String
    STACKIT Project ID to which the static route is associated.
    routingTableId String
    The routing table ID to which the static route is associated.
    vpcId 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 VpcRoutingTableStaticRouteTimeouts
    destination VpcRoutingTableStaticRouteDestination
    The destination of the static route.
    nexthop VpcRoutingTableStaticRouteNexthop
    The nexthop of the static route.
    projectId string
    STACKIT Project ID to which the static route is associated.
    routingTableId string
    The routing table ID to which the static route is associated.
    vpcId 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 VpcRoutingTableStaticRouteTimeouts
    destination VpcRoutingTableStaticRouteDestinationArgs
    The destination of the static route.
    nexthop VpcRoutingTableStaticRouteNexthopArgs
    The nexthop of the static route.
    project_id str
    STACKIT Project ID to which the static route is associated.
    routing_table_id str
    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 VpcRoutingTableStaticRouteTimeoutsArgs
    destination Property Map
    The destination of the static route.
    nexthop Property Map
    The nexthop of the static route.
    projectId String
    STACKIT Project ID to which the static route is associated.
    routingTableId String
    The routing table ID to which the static route is associated.
    vpcId 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:

    Id string
    The provider-assigned unique ID for this managed resource.
    RouteId string
    The static route ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    RouteId string
    The static route ID.
    id string
    The provider-assigned unique ID for this managed resource.
    route_id string
    The static route ID.
    id String
    The provider-assigned unique ID for this managed resource.
    routeId String
    The static route ID.
    id string
    The provider-assigned unique ID for this managed resource.
    routeId string
    The static route ID.
    id str
    The provider-assigned unique ID for this managed resource.
    route_id str
    The static route ID.
    id String
    The provider-assigned unique ID for this managed resource.
    routeId String
    The static route ID.

    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) -> VpcRoutingTableStaticRoute
    func 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.
    The following state arguments are supported:
    Destination VpcRoutingTableStaticRouteDestination
    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 VpcRoutingTableStaticRouteNexthop
    The nexthop of the static route.
    ProjectId string
    STACKIT Project ID to which the static route is associated.
    Region string
    The region of the static route.
    RouteId string
    The static route ID.
    RoutingTableId string
    The routing table ID to which the static route is associated.
    Timeouts VpcRoutingTableStaticRouteTimeouts
    VpcId string
    The VPC ID to which the static route is associated.
    Destination VpcRoutingTableStaticRouteDestinationArgs
    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 VpcRoutingTableStaticRouteNexthopArgs
    The nexthop of the static route.
    ProjectId string
    STACKIT Project ID to which the static route is associated.
    Region string
    The region of the static route.
    RouteId string
    The static route ID.
    RoutingTableId string
    The routing table ID to which the static route is associated.
    Timeouts VpcRoutingTableStaticRouteTimeoutsArgs
    VpcId 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_id string
    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 VpcRoutingTableStaticRouteDestination
    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 VpcRoutingTableStaticRouteNexthop
    The nexthop of the static route.
    projectId String
    STACKIT Project ID to which the static route is associated.
    region String
    The region of the static route.
    routeId String
    The static route ID.
    routingTableId String
    The routing table ID to which the static route is associated.
    timeouts VpcRoutingTableStaticRouteTimeouts
    vpcId String
    The VPC ID to which the static route is associated.
    destination VpcRoutingTableStaticRouteDestination
    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 VpcRoutingTableStaticRouteNexthop
    The nexthop of the static route.
    projectId string
    STACKIT Project ID to which the static route is associated.
    region string
    The region of the static route.
    routeId string
    The static route ID.
    routingTableId string
    The routing table ID to which the static route is associated.
    timeouts VpcRoutingTableStaticRouteTimeouts
    vpcId string
    The VPC ID to which the static route is associated.
    destination VpcRoutingTableStaticRouteDestinationArgs
    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 VpcRoutingTableStaticRouteNexthopArgs
    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_id str
    The routing table ID to which the static route is associated.
    timeouts VpcRoutingTableStaticRouteTimeoutsArgs
    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.
    projectId String
    STACKIT Project ID to which the static route is associated.
    region String
    The region of the static route.
    routeId String
    The static route ID.
    routingTableId String
    The routing table ID to which the static route is associated.
    timeouts Property Map
    vpcId String
    The VPC ID to which the static route is associated.

    Supporting Types

    VpcRoutingTableStaticRouteDestination, VpcRoutingTableStaticRouteDestinationArgs

    Type string
    CIDR type. Possible values are: cidrv4, cidrv6. Currently cidrv6 is unsupported.
    Value string
    CIDR value.
    Type string
    CIDR type. Possible values are: cidrv4, cidrv6. Currently cidrv6 is unsupported.
    Value string
    CIDR value.
    type string
    CIDR type. Possible values are: cidrv4, cidrv6. Currently cidrv6 is unsupported.
    value string
    CIDR value.
    type String
    CIDR type. Possible values are: cidrv4, cidrv6. Currently cidrv6 is unsupported.
    value String
    CIDR value.
    type string
    CIDR type. Possible values are: cidrv4, cidrv6. Currently cidrv6 is unsupported.
    value string
    CIDR value.
    type str
    CIDR type. Possible values are: cidrv4, cidrv6. Currently cidrv6 is unsupported.
    value str
    CIDR value.
    type String
    CIDR type. Possible values are: cidrv4, cidrv6. Currently cidrv6 is unsupported.
    value String
    CIDR value.

    VpcRoutingTableStaticRouteNexthop, VpcRoutingTableStaticRouteNexthopArgs

    Type string
    Type of the nexthop. Possible values are: blackhole, internet, ipv4, ipv6. Currently ipv6 is unsupported.
    Value string
    Value of the nexthop
    Type string
    Type of the nexthop. Possible values are: blackhole, internet, ipv4, ipv6. Currently ipv6 is unsupported.
    Value string
    Value of the nexthop
    type string
    Type of the nexthop. Possible values are: blackhole, internet, ipv4, ipv6. Currently ipv6 is unsupported.
    value string
    Value of the nexthop
    type String
    Type of the nexthop. Possible values are: blackhole, internet, ipv4, ipv6. Currently ipv6 is unsupported.
    value String
    Value of the nexthop
    type string
    Type of the nexthop. Possible values are: blackhole, internet, ipv4, ipv6. Currently ipv6 is unsupported.
    value string
    Value of the nexthop
    type str
    Type of the nexthop. Possible values are: blackhole, internet, ipv4, ipv6. Currently ipv6 is unsupported.
    value str
    Value of the nexthop
    type String
    Type of the nexthop. Possible values are: blackhole, internet, ipv4, ipv6. Currently ipv6 is unsupported.
    value String
    Value of the nexthop

    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 stackit Terraform Provider.
    stackit logo
    Viewing docs for stackit v0.0.7
    published on Monday, Aug 17, 2026 by stackitcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial