aboutsummaryrefslogtreecommitdiffstats
path: root/terraform.nix
blob: 70d4104257ca4d690d9c2077f1c0c16443e08761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let
  inherit (import <fysiweb>) fysilib lib;
in
fysilib.terraform.eval (import <fysiweb/terraform.nix> {
  resource = {
    hcloud_server.system1 = {
      name = "system1";
      server_type = "cx11";
      location = "nbg1";
      image = "\${data.hcloud_image.base.id}";
      ssh_keys = [
        "fysiweb-cli"
      ];
    };
  };
})