30 lines
681 B
HCL
30 lines
681 B
HCL
resource "hcloud_server" "HomeLab" {
|
|
count = var.instances
|
|
name = "merlin"
|
|
image = var.os_type
|
|
server_type = var.server_type
|
|
location = var.location
|
|
ssh_keys = [hcloud_ssh_key.default.id]
|
|
firewall_ids = [hcloud_firewall.prod.id,hcloud_firewall.Gitea_SSH.id]
|
|
labels = {
|
|
}
|
|
|
|
lifecycle {
|
|
ignore_changes = [
|
|
ssh_keys,
|
|
]
|
|
}
|
|
}
|
|
#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]
|
|
# firewall_ids = [hcloud_firewall.prod.id]
|
|
# labels = {
|
|
# }
|
|
#
|
|
#}
|