homelab/infra/server.tf

25 lines
577 B
Terraform
Raw Permalink 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-09-03 07:01:47 +00:00
firewall_ids = [hcloud_firewall.prod.id]
2022-06-19 14:04:32 +00:00
labels = {
}
}
2022-07-26 19:04:51 +00:00
resource "hcloud_server" "HomeLab2" {
count = var.instances
name = "corwin"
image = "rocky-9"
server_type = var.server_type
location = var.location
ssh_keys = [hcloud_ssh_key.default.id]
2022-09-03 07:01:47 +00:00
firewall_ids = [hcloud_firewall.prod.id]
2022-07-26 19:04:51 +00:00
labels = {
}
}