Merge pull request #338 from vhorne/fw-fix-typo

fix typo - jump to server
This commit is contained in:
Tom Archer 2024-07-29 14:13:20 -07:00 committed by GitHub
commit 20ed8541d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -269,7 +269,7 @@ resource "azurerm_route_table" "rt" {
}
}
resource "azurerm_subnet_route_table_association" "jump_subnet_rt_association" {
resource "azurerm_subnet_route_table_association" "server_subnet_rt_association" {
subnet_id = azurerm_subnet.server_subnet.id
route_table_id = azurerm_route_table.rt.id
}