migrate infra to terranix
This commit is contained in:
parent
32c4eeb2f8
commit
de32fe0db0
16 changed files with 295 additions and 289 deletions
20
infra/dns.nix
Normal file
20
infra/dns.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
resource.hcloud_zone.rpqt_fr = {
|
||||
name = "rpqt.fr";
|
||||
mode = "primary";
|
||||
};
|
||||
|
||||
resource.hcloud_zone.turifer_dev = {
|
||||
name = "turifer.dev";
|
||||
mode = "primary";
|
||||
};
|
||||
|
||||
output.rpqt_fr_zone_name = {
|
||||
value = config.resource.hcloud_zone.rpqt_fr "name";
|
||||
};
|
||||
|
||||
output.turifer_dev_zone_name = {
|
||||
value = config.resource.hcloud_zone.turifer_dev "name";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue