resource "azurerm_route_table" "${MyResource}" {
name = "acceptanceTestNetworkInterface1"
resource_group_name = "\${azurerm_resource_group.test.name}"
location = "West US"
}
azurerm_route_table
0
0
lucycodes42
The code creates a new route table resource named "acceptanceTestNetworkInterface1" in the ${azurerm_resource_group.test.name} resource group. The location parameter specifies that the route table should be created in the West US region.
Shortcut: tf_azurerm_route_table
0 Comments
Add Comment
Log in to add a comment