Files
HetznerTerra/terraform/ssh.tf
MichaelFisher1997 27cb069101
Some checks failed
Deploy Cluster / Terraform (push) Failing after 17s
Deploy Cluster / Ansible (push) Has been skipped
fix: Use existing 'infra' SSH key instead of creating new one
2026-02-28 22:03:46 +00:00

8 lines
137 B
HCL

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