Add space between variable name and starting { (#27)

Because the version of Terraform I'm using doesn't like it.
This commit is contained in:
runecalico 2017-11-05 11:23:43 -06:00 коммит произвёл Damien Caro
Родитель 5b4096cbe8
Коммит d53e0a5739
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -7,7 +7,7 @@ variable "location" {
description = "The location/region where the virtual network is created. Changing this forces a new resource to be created."
}
variable "vnet_subnet_id"{
variable "vnet_subnet_id" {
description = "The subnet id of the virtual network where the virtual machines will reside."
}
@ -26,7 +26,7 @@ variable "ssh_key" {
default = "~/.ssh/id_rsa.pub"
}
variable "remote_port"{
variable "remote_port" {
description = "Remote tcp port to be used for access to the vms created via the nsg applied to the nics."
default = ""
}