Merge pull request #14398 from vrenjith/patch-2

Spaces are not allowed in name
This commit is contained in:
Jake Champlin 2017-05-11 11:27:49 -04:00 committed by GitHub
commit 40607538c2
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ resource "azurerm_lb" "test" {
resource "azurerm_lb_probe" "test" { resource "azurerm_lb_probe" "test" {
resource_group_name = "${azurerm_resource_group.test.name}" resource_group_name = "${azurerm_resource_group.test.name}"
loadbalancer_id = "${azurerm_lb.test.id}" loadbalancer_id = "${azurerm_lb.test.id}"
name = "SSH Running Probe" name = "ssh-running-probe"
port = 22 port = 22
} }
``` ```