0
0
llucycodes42
This code defines a resource named "SSH Running Probe" and sets its location to West US. The resource also references a resource group named "test" and specifies the load balancer's ID as well as the SSH port that it should use.
Shortcut: tf_azurerm_lb_probe
resource "azurerm_lb_probe" "${MyResource}" {
name = "SSH Running Probe"
location = "West US"
resource_group_name = "\${azurerm_resource_group.test.name}"
loadbalancer_id = "\${azurerm_lb.test.id}"
port = 22
}