mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
Gabriel Arazas
50526a608b
Welp, we're now making it fully declarative for the entire cluster instead of individual submodules.
16 lines
263 B
HCL
16 lines
263 B
HCL
variable "hcloud_token" {
|
|
sensitive = true
|
|
}
|
|
|
|
provider "hcloud" {
|
|
token = var.hcloud_token
|
|
}
|
|
|
|
module "hetzner_vps_plover" {
|
|
source = "../configs/nixos/plover"
|
|
zone_id = data.hetznerdns_zone.main.id
|
|
ssh_keys = [
|
|
hcloud_ssh_key.foodogsquared.id
|
|
]
|
|
}
|