|
|
@ -86,7 +86,7 @@ resource "google_compute_instance" "default" { |
|
|
|
type = "ssh" |
|
|
|
type = "ssh" |
|
|
|
user = var.gcp_ssh_user |
|
|
|
user = var.gcp_ssh_user |
|
|
|
timeout = "500s" |
|
|
|
timeout = "500s" |
|
|
|
private_key = "${file(var.gcp_ssh_priv_key_file)}" |
|
|
|
private_key = file(var.gcp_ssh_priv_key_file) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -102,7 +102,7 @@ resource "google_compute_instance" "default" { |
|
|
|
type = "ssh" |
|
|
|
type = "ssh" |
|
|
|
user = var.gcp_ssh_user |
|
|
|
user = var.gcp_ssh_user |
|
|
|
timeout = "500s" |
|
|
|
timeout = "500s" |
|
|
|
private_key = "${file(var.gcp_ssh_priv_key_file)}" |
|
|
|
private_key = file(var.gcp_ssh_priv_key_file) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|