1. Packages
  2. Azure Classic
  3. API Docs
  4. network
  5. Route

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Route within a Route Table.

    NOTE on Route Tables and Routes: This provider currently provides both a standalone Route resource, and allows for Routes to be defined in-line within the Route Table resource. At this time you cannot use a Route Table with in-line Routes in conjunction with any Route resources. Doing so will cause a conflict of Route configurations and will overwrite Routes.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleRouteTable = new Azure.Network.RouteTable("exampleRouteTable", new Azure.Network.RouteTableArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
            });
            var exampleRoute = new Azure.Network.Route("exampleRoute", new Azure.Network.RouteArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                RouteTableName = exampleRouteTable.Name,
                AddressPrefix = "10.1.0.0/16",
                NextHopType = "vnetlocal",
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/network"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleRouteTable, err := network.NewRouteTable(ctx, "exampleRouteTable", &network.RouteTableArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewRoute(ctx, "exampleRoute", &network.RouteArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			RouteTableName:    exampleRouteTable.Name,
    			AddressPrefix:     pulumi.String("10.1.0.0/16"),
    			NextHopType:       pulumi.String("vnetlocal"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleRouteTable = new azure.network.RouteTable("exampleRouteTable", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
    });
    const exampleRoute = new azure.network.Route("exampleRoute", {
        resourceGroupName: exampleResourceGroup.name,
        routeTableName: exampleRouteTable.name,
        addressPrefix: "10.1.0.0/16",
        nextHopType: "vnetlocal",
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_route_table = azure.network.RouteTable("exampleRouteTable",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name)
    example_route = azure.network.Route("exampleRoute",
        resource_group_name=example_resource_group.name,
        route_table_name=example_route_table.name,
        address_prefix="10.1.0.0/16",
        next_hop_type="vnetlocal")
    

    Example coming soon!

    Create Route Resource

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

    Constructor syntax

    new Route(name: string, args: RouteArgs, opts?: CustomResourceOptions);
    @overload
    def Route(resource_name: str,
              args: RouteArgs,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Route(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              address_prefix: Optional[str] = None,
              next_hop_type: Optional[str] = None,
              resource_group_name: Optional[str] = None,
              route_table_name: Optional[str] = None,
              name: Optional[str] = None,
              next_hop_in_ip_address: Optional[str] = None)
    func NewRoute(ctx *Context, name string, args RouteArgs, opts ...ResourceOption) (*Route, error)
    public Route(string name, RouteArgs args, CustomResourceOptions? opts = null)
    public Route(String name, RouteArgs args)
    public Route(String name, RouteArgs args, CustomResourceOptions options)
    
    type: azure:network:Route
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RouteArgs
    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 RouteArgs
    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 RouteArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RouteArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RouteArgs
    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 azureRouteResource = new Azure.Network.Route("azureRouteResource", new()
    {
        AddressPrefix = "string",
        NextHopType = "string",
        ResourceGroupName = "string",
        RouteTableName = "string",
        Name = "string",
        NextHopInIpAddress = "string",
    });
    
    example, err := network.NewRoute(ctx, "azureRouteResource", &network.RouteArgs{
    	AddressPrefix:      pulumi.String("string"),
    	NextHopType:        pulumi.String("string"),
    	ResourceGroupName:  pulumi.String("string"),
    	RouteTableName:     pulumi.String("string"),
    	Name:               pulumi.String("string"),
    	NextHopInIpAddress: pulumi.String("string"),
    })
    
    var azureRouteResource = new com.pulumi.azure.network.Route("azureRouteResource", com.pulumi.azure.network.RouteArgs.builder()
        .addressPrefix("string")
        .nextHopType("string")
        .resourceGroupName("string")
        .routeTableName("string")
        .name("string")
        .nextHopInIpAddress("string")
        .build());
    
    azure_route_resource = azure.network.Route("azureRouteResource",
        address_prefix="string",
        next_hop_type="string",
        resource_group_name="string",
        route_table_name="string",
        name="string",
        next_hop_in_ip_address="string")
    
    const azureRouteResource = new azure.network.Route("azureRouteResource", {
        addressPrefix: "string",
        nextHopType: "string",
        resourceGroupName: "string",
        routeTableName: "string",
        name: "string",
        nextHopInIpAddress: "string",
    });
    
    type: azure:network:Route
    properties:
        addressPrefix: string
        name: string
        nextHopInIpAddress: string
        nextHopType: string
        resourceGroupName: string
        routeTableName: string
    

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

    AddressPrefix string
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    NextHopType string
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    ResourceGroupName string
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    RouteTableName string
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    Name string
    The name of the route. Changing this forces a new resource to be created.
    NextHopInIpAddress string
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    AddressPrefix string
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    NextHopType string
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    ResourceGroupName string
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    RouteTableName string
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    Name string
    The name of the route. Changing this forces a new resource to be created.
    NextHopInIpAddress string
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    addressPrefix String
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    nextHopType String
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    resourceGroupName String
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    routeTableName String
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    name String
    The name of the route. Changing this forces a new resource to be created.
    nextHopInIpAddress String
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    addressPrefix string
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    nextHopType string
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    resourceGroupName string
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    routeTableName string
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    name string
    The name of the route. Changing this forces a new resource to be created.
    nextHopInIpAddress string
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    address_prefix str
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    next_hop_type str
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    resource_group_name str
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    route_table_name str
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    name str
    The name of the route. Changing this forces a new resource to be created.
    next_hop_in_ip_address str
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    addressPrefix String
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    nextHopType String
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    resourceGroupName String
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    routeTableName String
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    name String
    The name of the route. Changing this forces a new resource to be created.
    nextHopInIpAddress String
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Route 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 Route Resource

    Get an existing Route 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?: RouteState, opts?: CustomResourceOptions): Route
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address_prefix: Optional[str] = None,
            name: Optional[str] = None,
            next_hop_in_ip_address: Optional[str] = None,
            next_hop_type: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            route_table_name: Optional[str] = None) -> Route
    func GetRoute(ctx *Context, name string, id IDInput, state *RouteState, opts ...ResourceOption) (*Route, error)
    public static Route Get(string name, Input<string> id, RouteState? state, CustomResourceOptions? opts = null)
    public static Route get(String name, Output<String> id, RouteState state, CustomResourceOptions options)
    resources:  _:    type: azure:network:Route    get:      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:
    AddressPrefix string
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    Name string
    The name of the route. Changing this forces a new resource to be created.
    NextHopInIpAddress string
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    NextHopType string
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    ResourceGroupName string
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    RouteTableName string
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    AddressPrefix string
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    Name string
    The name of the route. Changing this forces a new resource to be created.
    NextHopInIpAddress string
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    NextHopType string
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    ResourceGroupName string
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    RouteTableName string
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    addressPrefix String
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    name String
    The name of the route. Changing this forces a new resource to be created.
    nextHopInIpAddress String
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    nextHopType String
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    resourceGroupName String
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    routeTableName String
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    addressPrefix string
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    name string
    The name of the route. Changing this forces a new resource to be created.
    nextHopInIpAddress string
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    nextHopType string
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    resourceGroupName string
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    routeTableName string
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    address_prefix str
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    name str
    The name of the route. Changing this forces a new resource to be created.
    next_hop_in_ip_address str
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    next_hop_type str
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    resource_group_name str
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    route_table_name str
    The name of the route table within which create the route. Changing this forces a new resource to be created.
    addressPrefix String
    The destination CIDR to which the route applies, such as 10.1.0.0/16
    name String
    The name of the route. Changing this forces a new resource to be created.
    nextHopInIpAddress String
    Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.
    nextHopType String
    The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None
    resourceGroupName String
    The name of the resource group in which to create the route. Changing this forces a new resource to be created.
    routeTableName String
    The name of the route table within which create the route. Changing this forces a new resource to be created.

    Import

    Routes can be imported using the resource id, e.g.

     $ pulumi import azure:network/route:Route exampleRoute /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/routeTables/mytable1/routes/myroute1
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.