Open mitchellkingsley opened 2 years ago
It makes sense to remove SSHPOP or Azure as they are only used for hosts. Currently, the only filter we have is the --provisioner
flag.
If you're always using the same provisioner there's some helpful tricks:
"provisioner": "devops-user"
in $(step path)/defaults.json
If you use contexts
I think you can also use profiles to that (@dopey should have more details).
The environment variable tip will be useful for users who only deal with the single provisioner. Will let that subset of people know about it!
However, as mentioned, the SSHPOP
, Azure
, and (in my specific use case) JWK
provisioners will never be selected by a human.
Let me know if I can provide any other info.
Following up here: by default, we think this should be a "can this provisioner generate SSH certs" filter. That's a configuration on the provisioner that is part of the CA configuration.
The problem is that this may still be too coarse. You may have certain provisioners that only generate host SSH certificates. But they will still be returned as part of the "ssh enabled provisioners list" to the step ssh login
command which is currently only for users. So, we probably want more fine grained configurability on provisioners with regards to SSH. That configurability does not exist, but we're hoping it will in the future.
With regard to timing on "filtering the list to only SSH enabled provisioners" I can't make any promises. But we'd be happy to work with someone from the community if anyone is interested in tackling this one.
What would you like to be added
A configuration option for provisioners which will hide them from the provisioners list when the
step ssh login
command is used.Why this is needed
When using multiple provisioners, the selection list when using
step ssh login
can become cluttered with provisioners that:In the example below
SSHPOP
,host-registration
, anddevops-concourse
are not useful for authorizing a user's CSR. Cleaning up this list to only include the relevant/desired items would improve clarity for the end user.