Replace key_path with private_key and file() interpolation.
This commit is contained in:
parent
29e52307cb
commit
4a159fec49
|
@ -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" {
|
||||||
|
|
Loading…
Reference in New Issue