Files
HetznerTerra/terraform/ssh.tf
T

8 lines
137 B
Terraform
Raw Normal View History

data "local_file" "ssh_public_key" {
filename = pathexpand(var.ssh_public_key)
}
data "hcloud_ssh_key" "cluster" {
name = "infra"
}