Azure Network Route Table

This page shows how to write Terraform and Azure Resource Manager for Network Route Table and write them securely.

azurerm_virtual_hub_route_table (Terraform)

The Route Table in Network can be configured in Terraform with the resource name azurerm_virtual_hub_route_table. The following sections describe 9 examples of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L6
resource "azurerm_virtual_hub_route_table" "Red_H1" {
  name           = "Red"
  labels         = ["Red"]
  virtual_hub_id = data.azurerm_virtual_hub.VH_R1.id
}

main.tf#L6
resource "azurerm_virtual_hub_route_table" "Red_H1" {
  name           = "Red"
  virtual_hub_id = data.azurerm_virtual_hub.VH_R1.id
}

resource "azurerm_virtual_hub_route_table" "Blue_H1" {
main.tf#L6
resource "azurerm_virtual_hub_route_table" "Red_H1" {
  name           = "Red"
  virtual_hub_id = data.azurerm_virtual_hub.VH_R1.id
}

resource "azurerm_virtual_hub_route_table" "Blue_H1" {
vwan.tf#L38
resource "azurerm_virtual_hub_route_table" "westeu_vHub_rtb" {
  name           = "westeu_vHub_RTB"
  virtual_hub_id = azurerm_virtual_hub.westeu_vHub.id

}
////////////// EAST US
main.tf#L6
resource "azurerm_virtual_hub_route_table" "Red" {
  name           = "Red"
  virtual_hub_id = data.azurerm_virtual_hub.VH_R1.id
}

resource "azurerm_virtual_hub_route_table" "Blue" {
networking_virtual_hub_route_table.tf#L13
resource "azurerm_virtual_hub_route_table" "route_table" {
  for_each = local.networking.virtual_hub_route_tables

  name = each.value.name

  virtual_hub_id = coalesce(
30-virtual-hubs.tf#L57
resource "azurerm_virtual_hub_route_table" "virtual_hub_route_table" {
  for_each = var.virtual_hub_route_tables

  labels         = lookup(each.value, "labels", null) != null ? split(",", replace(lookup(each.value, "labels", null), " ", "")) : []
  name           = each.key
  virtual_hub_id = azurerm_virtual_hub.virtual_hub[lookup(each.value, "virtual_hub_name", null)].id
networking_virtual_hub_route_table.tf#L13
resource "azurerm_virtual_hub_route_table" "route_table" {
  for_each = local.networking.virtual_hub_route_tables

  name = each.value.name

  virtual_hub_id = coalesce(
networking_virtual_hub_route_table.tf#L13
resource "azurerm_virtual_hub_route_table" "route_table" {
  for_each = local.networking.virtual_hub_route_tables

  name = each.value.name

  virtual_hub_id = coalesce(

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages a Virtual Hub Route Table.

Tips: Best Practices for The Other Azure Network Resources

In addition to the azurerm_network_security_group, Azure Network has the other resources that should be configured for security reasons. Please check some examples of those resources and precautions.

risk-label

azurerm_network_security_group

Ensure to disable RDP port from the Internet

It is better to disable the RDP port from the Internet. RDP access should not be accepted from the Internet (*, 0.0.0.0, /0, internet, any), and consider using the Azure Bastion Service.

risk-label

azurerm_network_security_rule

Ensure to set a more restrictive CIDR range for ingress from the internet

It is better to set a more restrictive CIDR range not to use very broad subnets. If possible, segments should be divided into smaller subnets.

risk-label

azurerm_network_watcher_flow_log

Ensure to enable Retention policy for flow logs and set it to enough duration

It is better to enable a retention policy for flow logs. Flow logs show us all network activity in the cloud environment and support us when we face critical incidents.

Review your Azure Network settings

In addition to the above, there are other security points you should be aware of making sure that your .tf files are protected in Shisho Cloud.

Microsoft.Network/virtualHubs/hubRouteTables (Azure Resource Manager)

The virtualHubs/hubRouteTables in Microsoft.Network can be configured in Azure Resource Manager with the resource name Microsoft.Network/virtualHubs/hubRouteTables. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

  • name required - string
  • type required - string
  • apiVersion required - string
  • properties required
      • routes optional array
          • name required - string

            The name of the Route that is unique within a RouteTable. This name can be used to access this route.

          • destinationType required - string

            The type of destinations (eg: CIDR, ResourceId, Service).

          • destinations required - array

            List of all destinations.

          • nextHopType required - string

            The type of next hop (eg: ResourceId).

          • nextHop required - string

            NextHop resource ID.

      • labels optional - array

        List of labels associated with this route table.

Frequently asked questions

What is Azure Network Route Table?

Azure Network Route Table is a resource for Network of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure Network Route Table?

For Terraform, the ipspace/pubcloud, ipspace/pubcloud and ipspace/pubcloud source code examples are useful. See the Terraform Example section for further details.