Best practice for organizing & grouping huge amount of SSH profiles? #16167
Unanswered
MichaelSuen-thePointer
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Maybe something like New tab dropdown customization? You may still need to roll the customization manually (or with a script), but at least they'll all be grouped together in the UI? I have something like: "newTabMenu":
[
{ "type": "remainingProfiles" },
{
"allowEmpty": false,
"entries":
[
{
"commandline": null,
"name": null,
"source": "Windows.Terminal.VisualStudio",
"type": "matchProfiles"
},
{
"type": "profile", "profile": "{da29b8a9-e007-5b35-a0d3-d7a869ae486e}",
}
],
"icon": null,
"inline": "never",
"name": "VS",
"type": "folder"
},
] |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all. As a server admin, I need to manage multiple server clusters, each cluster consists of multiple machines, from 4 to 500+ machines. In total I have about 8000 ssh profiles to store & access in Terminal.
I can enumerate each machine's ip, name and its belonging cluster. I already have a config generator program to generate those profiles into Terminal's settings.json.
My question is:
I need those ssh profile to be grouped by its cluster names for quicker access.
I need to do fuzzy search on cluster/machine names.
I don't need to open lot's of ssh sessions at the same time.
Which feature should I use to achieve that?
Beta Was this translation helpful? Give feedback.
All reactions