1. Packages
  2. Openstack Provider
  3. API Docs
  4. networking
  5. RouterRoute
OpenStack v5.0.3 published on Wednesday, Feb 12, 2025 by Pulumi

openstack.networking.RouterRoute

Explore with Pulumi AI

Creates a routing entry on a OpenStack V2 router.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";

const router1 = new openstack.networking.Router("router_1", {
    name: "router_1",
    adminStateUp: true,
});
const network1 = new openstack.networking.Network("network_1", {
    name: "network_1",
    adminStateUp: true,
});
const subnet1 = new openstack.networking.Subnet("subnet_1", {
    networkId: network1.id,
    cidr: "192.168.199.0/24",
    ipVersion: 4,
});
const int1 = new openstack.networking.RouterInterface("int_1", {
    routerId: router1.id,
    subnetId: subnet1.id,
});
const routerRoute1 = new openstack.networking.RouterRoute("router_route_1", {
    routerId: router1.id,
    destinationCidr: "10.0.1.0/24",
    nextHop: "192.168.199.254",
}, {
    dependsOn: [int1],
});
Copy
import pulumi
import pulumi_openstack as openstack

router1 = openstack.networking.Router("router_1",
    name="router_1",
    admin_state_up=True)
network1 = openstack.networking.Network("network_1",
    name="network_1",
    admin_state_up=True)
subnet1 = openstack.networking.Subnet("subnet_1",
    network_id=network1.id,
    cidr="192.168.199.0/24",
    ip_version=4)
int1 = openstack.networking.RouterInterface("int_1",
    router_id=router1.id,
    subnet_id=subnet1.id)
router_route1 = openstack.networking.RouterRoute("router_route_1",
    router_id=router1.id,
    destination_cidr="10.0.1.0/24",
    next_hop="192.168.199.254",
    opts = pulumi.ResourceOptions(depends_on=[int1]))
Copy
package main

import (
	"github.com/pulumi/pulumi-openstack/sdk/v5/go/openstack/networking"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		router1, err := networking.NewRouter(ctx, "router_1", &networking.RouterArgs{
			Name:         pulumi.String("router_1"),
			AdminStateUp: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		network1, err := networking.NewNetwork(ctx, "network_1", &networking.NetworkArgs{
			Name:         pulumi.String("network_1"),
			AdminStateUp: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		subnet1, err := networking.NewSubnet(ctx, "subnet_1", &networking.SubnetArgs{
			NetworkId: network1.ID(),
			Cidr:      pulumi.String("192.168.199.0/24"),
			IpVersion: pulumi.Int(4),
		})
		if err != nil {
			return err
		}
		int1, err := networking.NewRouterInterface(ctx, "int_1", &networking.RouterInterfaceArgs{
			RouterId: router1.ID(),
			SubnetId: subnet1.ID(),
		})
		if err != nil {
			return err
		}
		_, err = networking.NewRouterRoute(ctx, "router_route_1", &networking.RouterRouteArgs{
			RouterId:        router1.ID(),
			DestinationCidr: pulumi.String("10.0.1.0/24"),
			NextHop:         pulumi.String("192.168.199.254"),
		}, pulumi.DependsOn([]pulumi.Resource{
			int1,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using OpenStack = Pulumi.OpenStack;

return await Deployment.RunAsync(() => 
{
    var router1 = new OpenStack.Networking.Router("router_1", new()
    {
        Name = "router_1",
        AdminStateUp = true,
    });

    var network1 = new OpenStack.Networking.Network("network_1", new()
    {
        Name = "network_1",
        AdminStateUp = true,
    });

    var subnet1 = new OpenStack.Networking.Subnet("subnet_1", new()
    {
        NetworkId = network1.Id,
        Cidr = "192.168.199.0/24",
        IpVersion = 4,
    });

    var int1 = new OpenStack.Networking.RouterInterface("int_1", new()
    {
        RouterId = router1.Id,
        SubnetId = subnet1.Id,
    });

    var routerRoute1 = new OpenStack.Networking.RouterRoute("router_route_1", new()
    {
        RouterId = router1.Id,
        DestinationCidr = "10.0.1.0/24",
        NextHop = "192.168.199.254",
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            int1,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.openstack.networking.Router;
import com.pulumi.openstack.networking.RouterArgs;
import com.pulumi.openstack.networking.Network;
import com.pulumi.openstack.networking.NetworkArgs;
import com.pulumi.openstack.networking.Subnet;
import com.pulumi.openstack.networking.SubnetArgs;
import com.pulumi.openstack.networking.RouterInterface;
import com.pulumi.openstack.networking.RouterInterfaceArgs;
import com.pulumi.openstack.networking.RouterRoute;
import com.pulumi.openstack.networking.RouterRouteArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var router1 = new Router("router1", RouterArgs.builder()
            .name("router_1")
            .adminStateUp("true")
            .build());

        var network1 = new Network("network1", NetworkArgs.builder()
            .name("network_1")
            .adminStateUp("true")
            .build());

        var subnet1 = new Subnet("subnet1", SubnetArgs.builder()
            .networkId(network1.id())
            .cidr("192.168.199.0/24")
            .ipVersion(4)
            .build());

        var int1 = new RouterInterface("int1", RouterInterfaceArgs.builder()
            .routerId(router1.id())
            .subnetId(subnet1.id())
            .build());

        var routerRoute1 = new RouterRoute("routerRoute1", RouterRouteArgs.builder()
            .routerId(router1.id())
            .destinationCidr("10.0.1.0/24")
            .nextHop("192.168.199.254")
            .build(), CustomResourceOptions.builder()
                .dependsOn(int1)
                .build());

    }
}
Copy
resources:
  router1:
    type: openstack:networking:Router
    name: router_1
    properties:
      name: router_1
      adminStateUp: 'true'
  network1:
    type: openstack:networking:Network
    name: network_1
    properties:
      name: network_1
      adminStateUp: 'true'
  subnet1:
    type: openstack:networking:Subnet
    name: subnet_1
    properties:
      networkId: ${network1.id}
      cidr: 192.168.199.0/24
      ipVersion: 4
  int1:
    type: openstack:networking:RouterInterface
    name: int_1
    properties:
      routerId: ${router1.id}
      subnetId: ${subnet1.id}
  routerRoute1:
    type: openstack:networking:RouterRoute
    name: router_route_1
    properties:
      routerId: ${router1.id}
      destinationCidr: 10.0.1.0/24
      nextHop: 192.168.199.254
    options:
      dependsOn:
        - ${int1}
Copy

Notes

The next_hop IP address must be directly reachable from the router at the openstack.networking.RouterRoute resource creation time. You can ensure that by explicitly specifying a dependency on the openstack.networking.RouterInterface resource that connects the next hop to the router, as in the example above.

Create RouterRoute Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new RouterRoute(name: string, args: RouterRouteArgs, opts?: CustomResourceOptions);
@overload
def RouterRoute(resource_name: str,
                args: RouterRouteArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def RouterRoute(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                destination_cidr: Optional[str] = None,
                next_hop: Optional[str] = None,
                router_id: Optional[str] = None,
                region: Optional[str] = None)
func NewRouterRoute(ctx *Context, name string, args RouterRouteArgs, opts ...ResourceOption) (*RouterRoute, error)
public RouterRoute(string name, RouterRouteArgs args, CustomResourceOptions? opts = null)
public RouterRoute(String name, RouterRouteArgs args)
public RouterRoute(String name, RouterRouteArgs args, CustomResourceOptions options)
type: openstack:networking:RouterRoute
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. RouterRouteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. RouterRouteArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. RouterRouteArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RouterRouteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. RouterRouteArgs
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 routerRouteResource = new OpenStack.Networking.RouterRoute("routerRouteResource", new()
{
    DestinationCidr = "string",
    NextHop = "string",
    RouterId = "string",
    Region = "string",
});
Copy
example, err := networking.NewRouterRoute(ctx, "routerRouteResource", &networking.RouterRouteArgs{
	DestinationCidr: pulumi.String("string"),
	NextHop:         pulumi.String("string"),
	RouterId:        pulumi.String("string"),
	Region:          pulumi.String("string"),
})
Copy
var routerRouteResource = new RouterRoute("routerRouteResource", RouterRouteArgs.builder()
    .destinationCidr("string")
    .nextHop("string")
    .routerId("string")
    .region("string")
    .build());
Copy
router_route_resource = openstack.networking.RouterRoute("routerRouteResource",
    destination_cidr="string",
    next_hop="string",
    router_id="string",
    region="string")
Copy
const routerRouteResource = new openstack.networking.RouterRoute("routerRouteResource", {
    destinationCidr: "string",
    nextHop: "string",
    routerId: "string",
    region: "string",
});
Copy
type: openstack:networking:RouterRoute
properties:
    destinationCidr: string
    nextHop: string
    region: string
    routerId: string
Copy

RouterRoute 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 RouterRoute resource accepts the following input properties:

DestinationCidr
This property is required.
Changes to this property will trigger replacement.
string
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
NextHop
This property is required.
Changes to this property will trigger replacement.
string
IP address of the next hop gateway. Changing this creates a new routing entry.
RouterId
This property is required.
Changes to this property will trigger replacement.
string
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
Region Changes to this property will trigger replacement. string
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
DestinationCidr
This property is required.
Changes to this property will trigger replacement.
string
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
NextHop
This property is required.
Changes to this property will trigger replacement.
string
IP address of the next hop gateway. Changing this creates a new routing entry.
RouterId
This property is required.
Changes to this property will trigger replacement.
string
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
Region Changes to this property will trigger replacement. string
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
destinationCidr
This property is required.
Changes to this property will trigger replacement.
String
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
nextHop
This property is required.
Changes to this property will trigger replacement.
String
IP address of the next hop gateway. Changing this creates a new routing entry.
routerId
This property is required.
Changes to this property will trigger replacement.
String
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
region Changes to this property will trigger replacement. String
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
destinationCidr
This property is required.
Changes to this property will trigger replacement.
string
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
nextHop
This property is required.
Changes to this property will trigger replacement.
string
IP address of the next hop gateway. Changing this creates a new routing entry.
routerId
This property is required.
Changes to this property will trigger replacement.
string
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
region Changes to this property will trigger replacement. string
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
destination_cidr
This property is required.
Changes to this property will trigger replacement.
str
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
next_hop
This property is required.
Changes to this property will trigger replacement.
str
IP address of the next hop gateway. Changing this creates a new routing entry.
router_id
This property is required.
Changes to this property will trigger replacement.
str
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
region Changes to this property will trigger replacement. str
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
destinationCidr
This property is required.
Changes to this property will trigger replacement.
String
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
nextHop
This property is required.
Changes to this property will trigger replacement.
String
IP address of the next hop gateway. Changing this creates a new routing entry.
routerId
This property is required.
Changes to this property will trigger replacement.
String
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
region Changes to this property will trigger replacement. String
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.

Outputs

All input properties are implicitly available as output properties. Additionally, the RouterRoute resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing RouterRoute Resource

Get an existing RouterRoute 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?: RouterRouteState, opts?: CustomResourceOptions): RouterRoute
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        destination_cidr: Optional[str] = None,
        next_hop: Optional[str] = None,
        region: Optional[str] = None,
        router_id: Optional[str] = None) -> RouterRoute
func GetRouterRoute(ctx *Context, name string, id IDInput, state *RouterRouteState, opts ...ResourceOption) (*RouterRoute, error)
public static RouterRoute Get(string name, Input<string> id, RouterRouteState? state, CustomResourceOptions? opts = null)
public static RouterRoute get(String name, Output<String> id, RouterRouteState state, CustomResourceOptions options)
resources:  _:    type: openstack:networking:RouterRoute    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
DestinationCidr Changes to this property will trigger replacement. string
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
NextHop Changes to this property will trigger replacement. string
IP address of the next hop gateway. Changing this creates a new routing entry.
Region Changes to this property will trigger replacement. string
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
RouterId Changes to this property will trigger replacement. string
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
DestinationCidr Changes to this property will trigger replacement. string
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
NextHop Changes to this property will trigger replacement. string
IP address of the next hop gateway. Changing this creates a new routing entry.
Region Changes to this property will trigger replacement. string
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
RouterId Changes to this property will trigger replacement. string
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
destinationCidr Changes to this property will trigger replacement. String
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
nextHop Changes to this property will trigger replacement. String
IP address of the next hop gateway. Changing this creates a new routing entry.
region Changes to this property will trigger replacement. String
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
routerId Changes to this property will trigger replacement. String
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
destinationCidr Changes to this property will trigger replacement. string
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
nextHop Changes to this property will trigger replacement. string
IP address of the next hop gateway. Changing this creates a new routing entry.
region Changes to this property will trigger replacement. string
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
routerId Changes to this property will trigger replacement. string
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
destination_cidr Changes to this property will trigger replacement. str
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
next_hop Changes to this property will trigger replacement. str
IP address of the next hop gateway. Changing this creates a new routing entry.
region Changes to this property will trigger replacement. str
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
router_id Changes to this property will trigger replacement. str
ID of the router this routing entry belongs to. Changing this creates a new routing entry.
destinationCidr Changes to this property will trigger replacement. String
CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.
nextHop Changes to this property will trigger replacement. String
IP address of the next hop gateway. Changing this creates a new routing entry.
region Changes to this property will trigger replacement. String
The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a router. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.
routerId Changes to this property will trigger replacement. String
ID of the router this routing entry belongs to. Changing this creates a new routing entry.

Import

Routing entries can be imported using a combined ID using the following format: <router_id>-route-<destination_cidr>-<next_hop>

$ pulumi import openstack:networking/routerRoute:RouterRoute router_route_1 686fe248-386c-4f70-9f6c-281607dad079-route-10.0.1.0/24-192.168.199.25
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
OpenStack pulumi/pulumi-openstack
License
Apache-2.0
Notes
This Pulumi package is based on the openstack Terraform Provider.