forked from extern/nixos-wiki-infra
41 lines
1.3 KiB
HCL
41 lines
1.3 KiB
HCL
# Record the SSH public key into Hetzner Cloud
|
|
data "hcloud_ssh_keys" "nixos_wiki" {
|
|
with_selector = "wiki=true"
|
|
}
|
|
|
|
resource "hcloud_server" "nixos_wiki" {
|
|
image = "debian-11"
|
|
keep_disk = true
|
|
name = "nixos-wiki"
|
|
server_type = var.server_type
|
|
ssh_keys = data.hcloud_ssh_keys.nixos_wiki.ssh_keys.*.name
|
|
backups = false
|
|
labels = var.tags
|
|
|
|
location = var.server_location
|
|
|
|
lifecycle {
|
|
# Don't destroy server instance if ssh keys changes.
|
|
ignore_changes = [ssh_keys]
|
|
prevent_destroy = false
|
|
}
|
|
}
|
|
|
|
module "deploy" {
|
|
depends_on = [local_file.nixos_vars]
|
|
source = "github.com/numtide/nixos-anywhere//terraform/all-in-one"
|
|
nixos_system_attr = ".#nixosConfigurations.${var.nixos_flake_attr}.config.system.build.toplevel"
|
|
nixos_partitioner_attr = ".#nixosConfigurations.${var.nixos_flake_attr}.config.system.build.diskoScriptNoDeps"
|
|
target_host = hcloud_server.nixos_wiki.ipv4_address
|
|
instance_id = hcloud_server.nixos_wiki.id
|
|
extra_files_script = "${path.module}/decrypt-age-keys.sh"
|
|
debug_logging = true
|
|
}
|
|
|
|
locals {
|
|
nixos_vars = {
|
|
ipv6_address = hcloud_server.nixos_wiki.ipv6_address
|
|
ssh_keys = data.hcloud_ssh_keys.nixos_wiki.ssh_keys.*.public_key
|
|
}
|
|
}
|