Files
terraform-talos/scaleway/common.tf
2024-08-12 19:12:03 +03:00

12 lines
315 B
HCL

data "scaleway_instance_image" "talos" {
for_each = toset(var.arch)
name = "talos-system-disk-${lower(each.key)}"
architecture = each.key == "arm64" ? "arm64" : "x86_64"
}
resource "scaleway_account_ssh_key" "terraform" {
name = "terraform"
public_key = file("~/.ssh/terraform.pub")
}