Replace key_path with private_key and file() interpolation.

This commit is contained in:
Martin Ivanov 2016-08-30 12:27:05 +03:00
parent 53149bd2f9
commit d9e9c7161b

View File

@ -24,8 +24,8 @@ resource "google_compute_instance" "consul" {
} }
connection { connection {
user = "${lookup(var.user, var.platform)}" user = "${lookup(var.user, var.platform)}"
key_path = "${var.key_path}" private_key = "${file("${var.key_path}")}"
} }
provisioner "file" { provisioner "file" {