feat(dns): migrate functions from gandi to dnsimple
This commit is contained in:
parent
e3b6cb72b4
commit
8acc60e328
|
@ -45,5 +45,47 @@ in
|
||||||
resource.dnsimple_zone.vzfdfp_de = {
|
resource.dnsimple_zone.vzfdfp_de = {
|
||||||
name = "vzfdfp.de";
|
name = "vzfdfp.de";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
resource.dnsimple_zone_record = let
|
||||||
|
# https://registry.terraform.io/providers/dnsimple/dnsimple/latest/docs/resources/zone_record
|
||||||
|
canonicalName = zoneName: record: let
|
||||||
|
# TODO: make less fragile and have actual unique and stable names
|
||||||
|
normalize = builtins.replaceStrings ["." "@"] ["_" "_root_"];
|
||||||
|
zone = normalize zoneName;
|
||||||
|
name = normalize record.name;
|
||||||
|
in "${zone}_${record.type}_${name}";
|
||||||
|
|
||||||
|
record = name: ttl: type: value: {
|
||||||
|
inherit name ttl type value;
|
||||||
|
};
|
||||||
|
|
||||||
|
proxyRecords = name: ttl: type: value: [
|
||||||
|
# kurisu.lahfa.xyz running a sniproxy:
|
||||||
|
(record name ttl "A" "163.172.69.160")
|
||||||
|
(record name ttl type value)
|
||||||
|
];
|
||||||
|
|
||||||
|
# Creates a extra *.p record pointing to the sniproxy
|
||||||
|
dualProxyRecords = name: ttl: type: value: lib.flatten [
|
||||||
|
(record name ttl type value)
|
||||||
|
(proxyRecords "${name}.p" ttl type value)
|
||||||
|
];
|
||||||
|
|
||||||
|
domain = zoneName: records:
|
||||||
|
builtins.listToAttrs (map (record: {
|
||||||
|
name = canonicalName zoneName record;
|
||||||
|
value = record // {
|
||||||
|
zone_name = zoneName;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
) (lib.flatten records));
|
||||||
|
zones = domains: lib.zipAttrs (lib.mapAttrsToList (zoneName: records: domain zoneName records) domains);
|
||||||
|
in zones {
|
||||||
|
"flowery.systems" = [
|
||||||
|
(record "" 300 "CNAME" "news.forkos.org")
|
||||||
|
];
|
||||||
|
"vzfdfp.de" = [
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue