-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremote_admin_linux_servers.example.json
More file actions
52 lines (52 loc) · 1.18 KB
/
remote_admin_linux_servers.example.json
File metadata and controls
52 lines (52 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"version": 1,
"defaultCredentials": {
"username": "remoteadmin",
"privateKeyPath": "C:\\Services\\RemoteAdminMCPSharp\\keys\\id_ed25519",
"useSudo": true
},
"groups": [
{
"name": "Production",
"description": "Production Linux hosts",
"groups": [
{
"name": "Trading",
"servers": [
{
"name": "prod-linux-trade-01",
"host": "prod-linux-trade-01.example.lan",
"description": "Primary trading host (linux)",
"tags": [ "trading", "prod" ]
}
]
}
],
"servers": [
{
"name": "prod-linux-db-01",
"host": "prod-linux-db-01.example.lan",
"tags": [ "db", "prod" ]
}
]
},
{
"name": "NonProduction",
"groups": [],
"servers": [
{
"name": "dev-linux-app-01",
"host": "dev-linux-app-01.example.lan",
"tags": [ "dev" ],
"credentials": {
"username": "devadmin",
"password": "REPLACE_ME",
"port": 2222,
"useSudo": false
}
}
]
}
],
"servers": []
}