feat(meta): Add netbird ip
Some checks failed
build configuration / push_to_cache (push) Blocked by required conditions
lint / check (push) Waiting to run
Check meta / check_meta (push) Successful in 25s
Check meta / check_dns (push) Successful in 45s
build configuration / build_compute01 (push) Has been cancelled
build configuration / build_storage01 (push) Has been cancelled
build configuration / build_web02 (push) Has been cancelled
build configuration / build_vault01 (push) Has been cancelled
build configuration / build_web01 (push) Has been cancelled
build configuration / build_rescue01 (push) Has been cancelled
Some checks failed
build configuration / push_to_cache (push) Blocked by required conditions
lint / check (push) Waiting to run
Check meta / check_meta (push) Successful in 25s
Check meta / check_dns (push) Successful in 45s
build configuration / build_compute01 (push) Has been cancelled
build configuration / build_storage01 (push) Has been cancelled
build configuration / build_web02 (push) Has been cancelled
build configuration / build_vault01 (push) Has been cancelled
build configuration / build_web01 (push) Has been cancelled
build configuration / build_rescue01 (push) Has been cancelled
This commit is contained in:
parent
d5d21ec204
commit
4296252fcc
2 changed files with 18 additions and 1 deletions
|
@ -19,6 +19,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
hostId = "8df60941";
|
hostId = "8df60941";
|
||||||
|
netbirdIp = "100.80.75.197";
|
||||||
};
|
};
|
||||||
|
|
||||||
geo01 = {
|
geo01 = {
|
||||||
|
@ -41,6 +42,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
hostId = "b88fee0c";
|
hostId = "b88fee0c";
|
||||||
|
netbirdIp = "100.80.8.66";
|
||||||
};
|
};
|
||||||
|
|
||||||
geo02 = {
|
geo02 = {
|
||||||
|
@ -63,6 +65,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
hostId = "45d65237";
|
hostId = "45d65237";
|
||||||
|
netbirdIp = "100.80.233.249";
|
||||||
};
|
};
|
||||||
|
|
||||||
storage01 = {
|
storage01 = {
|
||||||
|
@ -85,6 +88,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
hostId = "d4e7c369";
|
hostId = "d4e7c369";
|
||||||
|
netbirdIp = "100.80.156.154";
|
||||||
};
|
};
|
||||||
|
|
||||||
vault01 = {
|
vault01 = {
|
||||||
|
@ -113,6 +117,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
hostId = "e83b600d";
|
hostId = "e83b600d";
|
||||||
|
netbirdIp = "100.80.255.180";
|
||||||
};
|
};
|
||||||
|
|
||||||
web01 = {
|
web01 = {
|
||||||
|
@ -131,6 +136,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
hostId = "050df79e";
|
hostId = "050df79e";
|
||||||
|
netbirdIp = "100.80.77.90";
|
||||||
};
|
};
|
||||||
|
|
||||||
web02 = {
|
web02 = {
|
||||||
|
@ -149,6 +155,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
hostId = "b431ca10";
|
hostId = "b431ca10";
|
||||||
|
netbirdIp = null; # web02 is not to be connected on the VPN
|
||||||
};
|
};
|
||||||
|
|
||||||
rescue01 = {
|
rescue01 = {
|
||||||
|
@ -171,7 +178,10 @@
|
||||||
enableDefaultDNS = true;
|
enableDefaultDNS = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
hostId = "007f0200";
|
|
||||||
addresses.ipv4 = [ "82.67.34.230" ];
|
addresses.ipv4 = [ "82.67.34.230" ];
|
||||||
|
|
||||||
|
hostId = "007f0200";
|
||||||
|
netbirdIp = "100.80.97.140";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -239,6 +239,13 @@ in
|
||||||
Network Id of the node.
|
Network Id of the node.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
netbirdIp = mkOption {
|
||||||
|
type = nullOr str;
|
||||||
|
description = ''
|
||||||
|
IP address of the node in the netbird network.
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config =
|
config =
|
||||||
|
|
Loading…
Reference in a new issue