Spaces are not allowed in name

Spaces are not allowed in name for `azurerm_lb_probe`
This commit is contained in:
vrenjith 2017-05-11 20:48:11 +05:30 committed by GitHub
parent 0736dde0f7
commit fae2bf98e6
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_group_name = "${azurerm_resource_group.test.name}"
loadbalancer_id = "${azurerm_lb.test.id}"
name = "SSH Running Probe"
name = "ssh-running-probe"
port = 22
}
```