change git.bitlab21.com knownhost key for bd-worker container

This commit is contained in:
Sam 2025-02-25 13:39:52 +00:00
parent 07ac27c3a7
commit 508942d0f0
3 changed files with 7 additions and 7 deletions

View file

@ -5,7 +5,7 @@
group = "remotebuild"; group = "remotebuild";
openssh.authorizedKeys.keyFiles = [ openssh.authorizedKeys.keyFiles = [
./remotebuild.pub ../../users/keys/remotebuild.pub
]; ];
}; };

View file

@ -148,11 +148,11 @@ in {
mode = "0600"; mode = "0600";
path = "/root/.pgsync.yml"; path = "/root/.pgsync.yml";
content = '' content = ''
from: postgresql://${config.sops.placeholder."software/postgres/baseddata/user_username"}:${config.sops.placeholder."software/postgres/baseddata/user_password"}@${postgresIp}/baseddata from: postgresql://${config.sops.placeholder."software/postgres/baseddata/user_username"}:${config.sops.placeholder."software/postgres/baseddata/user_password"}@${postgresIp}/baseddata
to: postgresql://${config.sops.placeholder."software/postgres/baseddata/user_username"}:${config.sops.placeholder."software/postgres/baseddata/user_password"}@${postgresRemoteIp}/baseddata to: postgresql://${config.sops.placeholder."software/postgres/baseddata/user_username"}:${config.sops.placeholder."software/postgres/baseddata/user_password"}@${postgresRemoteIp}/baseddata
schemas: schemas:
- models_final - models_final
to_safe: true to_safe: true
''; '';
}; };
@ -291,7 +291,7 @@ in {
programs.ssh.knownHosts = { programs.ssh.knownHosts = {
"git.bitlab21.com" = { "git.bitlab21.com" = {
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIALNd2BGf64heYjWT9yt0fVmngepiHRIMsL7au/MRteg"; publicKey = "git.bitlab21.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFSGyrQvwa7gj0tG/EX3siWzGT9badUkD0yw0YGkcNeQ";
}; };
}; };