homelab/infra/server.tf

13 lines
292 B
Terraform
Raw Normal View History

2022-06-19 14:04:32 +00:00
resource "hcloud_server" "HomeLab" {
count = var.instances
2022-06-19 14:17:06 +00:00
name = "merlin"
2022-06-19 14:04:32 +00:00
image = var.os_type
server_type = var.server_type
location = var.location
ssh_keys = [hcloud_ssh_key.default.id]
2022-06-19 17:04:15 +00:00
firewall_ids = [hcloud_firewall.HomeLab.id]
2022-06-19 14:04:32 +00:00
labels = {
}
}