We recommend using Azure Native.
azure.network.Route
Explore with Pulumi AI
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
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleRouteTable = new azure.network.RouteTable("example", {
name: "acceptanceTestRouteTable1",
location: example.location,
resourceGroupName: example.name,
});
const exampleRoute = new azure.network.Route("example", {
name: "acceptanceTestRoute1",
resourceGroupName: example.name,
routeTableName: exampleRouteTable.name,
addressPrefix: "10.1.0.0/16",
nextHopType: "VnetLocal",
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_route_table = azure.network.RouteTable("example",
name="acceptanceTestRouteTable1",
location=example.location,
resource_group_name=example.name)
example_route = azure.network.Route("example",
name="acceptanceTestRoute1",
resource_group_name=example.name,
route_table_name=example_route_table.name,
address_prefix="10.1.0.0/16",
next_hop_type="VnetLocal")
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleRouteTable, err := network.NewRouteTable(ctx, "example", &network.RouteTableArgs{
Name: pulumi.String("acceptanceTestRouteTable1"),
Location: example.Location,
ResourceGroupName: example.Name,
})
if err != nil {
return err
}
_, err = network.NewRoute(ctx, "example", &network.RouteArgs{
Name: pulumi.String("acceptanceTestRoute1"),
ResourceGroupName: example.Name,
RouteTableName: exampleRouteTable.Name,
AddressPrefix: pulumi.String("10.1.0.0/16"),
NextHopType: pulumi.String("VnetLocal"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleRouteTable = new Azure.Network.RouteTable("example", new()
{
Name = "acceptanceTestRouteTable1",
Location = example.Location,
ResourceGroupName = example.Name,
});
var exampleRoute = new Azure.Network.Route("example", new()
{
Name = "acceptanceTestRoute1",
ResourceGroupName = example.Name,
RouteTableName = exampleRouteTable.Name,
AddressPrefix = "10.1.0.0/16",
NextHopType = "VnetLocal",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.RouteTable;
import com.pulumi.azure.network.RouteTableArgs;
import com.pulumi.azure.network.Route;
import com.pulumi.azure.network.RouteArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleRouteTable = new RouteTable("exampleRouteTable", RouteTableArgs.builder()
.name("acceptanceTestRouteTable1")
.location(example.location())
.resourceGroupName(example.name())
.build());
var exampleRoute = new Route("exampleRoute", RouteArgs.builder()
.name("acceptanceTestRoute1")
.resourceGroupName(example.name())
.routeTableName(exampleRouteTable.name())
.addressPrefix("10.1.0.0/16")
.nextHopType("VnetLocal")
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleRouteTable:
type: azure:network:RouteTable
name: example
properties:
name: acceptanceTestRouteTable1
location: ${example.location}
resourceGroupName: ${example.name}
exampleRoute:
type: azure:network:Route
name: example
properties:
name: acceptanceTestRoute1
resourceGroupName: ${example.name}
routeTableName: ${exampleRouteTable.name}
addressPrefix: 10.1.0.0/16
nextHopType: VnetLocal
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)
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 Route("azureRouteResource", 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
The Route resource accepts the following input properties:
- Address
Prefix string - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - Next
Hop stringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - Resource
Group stringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- Route
Table stringName - 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.
- Next
Hop stringIn Ip Address - 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 string - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - Next
Hop stringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - Resource
Group stringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- Route
Table stringName - 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.
- Next
Hop stringIn Ip Address - 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 String - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - next
Hop StringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - resource
Group StringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- route
Table StringName - 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.
- next
Hop StringIn Ip Address - 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 string - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - next
Hop stringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - resource
Group stringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- route
Table stringName - 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.
- next
Hop stringIn Ip Address - 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 to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - next_
hop_ strtype - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - resource_
group_ strname - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- route_
table_ strname - 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_ strin_ ip_ address - 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 String - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - next
Hop StringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - resource
Group StringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- route
Table StringName - 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.
- next
Hop StringIn Ip Address - 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)
Resource lookup is not supported in YAML
- 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.
- Address
Prefix string - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - Name string
- The name of the route. Changing this forces a new resource to be created.
- Next
Hop stringIn Ip Address - 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 stringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - Resource
Group stringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- Route
Table stringName - The name of the route table within which create the route. Changing this forces a new resource to be created.
- Address
Prefix string - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - Name string
- The name of the route. Changing this forces a new resource to be created.
- Next
Hop stringIn Ip Address - 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 stringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - Resource
Group stringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- Route
Table stringName - The name of the route table within which create the route. Changing this forces a new resource to be created.
- address
Prefix String - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - name String
- The name of the route. Changing this forces a new resource to be created.
- next
Hop StringIn Ip Address - 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 StringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - resource
Group StringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- route
Table StringName - The name of the route table within which create the route. Changing this forces a new resource to be created.
- address
Prefix string - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - name string
- The name of the route. Changing this forces a new resource to be created.
- next
Hop stringIn Ip Address - 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 stringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - resource
Group stringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- route
Table stringName - 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 to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - name str
- The name of the route. Changing this forces a new resource to be created.
- next_
hop_ strin_ ip_ address - 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_ strtype - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - resource_
group_ strname - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- route_
table_ strname - The name of the route table within which create the route. Changing this forces a new resource to be created.
- address
Prefix String - The destination to which the route applies. Can be CIDR (such as
10.1.0.0/16
) or Azure Service Tag (such asApiManagement
,AzureBackup
orAzureMonitor
) format. - name String
- The name of the route. Changing this forces a new resource to be created.
- next
Hop StringIn Ip Address - 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 StringType - The type of Azure hop the packet should be sent to. Possible values are
VirtualNetworkGateway
,VnetLocal
,Internet
,VirtualAppliance
andNone
. - resource
Group StringName - The name of the resource group in which to create the route. Changing this forces a new resource to be created.
- route
Table StringName - 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.