1
0
Fork 0

module(ssh): remove unused files

This commit is contained in:
Antoine Langlois 2024-03-20 21:13:07 +01:00
parent cbfda2ecaa
commit 8173c6fefa
Signed by: DataHearth
GPG Key ID: 946E2D0C410C7B3D
2 changed files with 0 additions and 39 deletions

View File

@ -1,31 +0,0 @@
let
keyNamePrefix = "id_ed25519";
in
{
"bap-dev" = {
hostname = "dev.app.bienaporter.com";
user = "service_deploy";
identityFile = "~/.ssh/${keyNamePrefix}_bap-dev";
identitiesOnly = true;
port = 5022;
};
"bap-prod" = {
hostname = "prod.app.bienaporter.com";
user = "service_deploy";
identityFile = "~/.ssh/${keyNamePrefix}_bap-prod";
identitiesOnly = true;
port = 5022;
};
"bap-runner" = {
hostname = "51.91.11.36";
user = "gitlab-runner";
identityFile = "~/.ssh/${keyNamePrefix}_bap-runner";
identitiesOnly = true;
};
"bap-gitlab" = {
hostname = "gitlab.com";
user = "git";
identityFile = "~/.ssh/${keyNamePrefix}_git";
identitiesOnly = true;
};
}

View File

@ -1,8 +0,0 @@
{
"github-wyll" = {
hostname = "github.com";
user = "git";
identityFile = "~/.ssh/id_ed25519_wyll";
identitiesOnly = true;
};
}