2019-10-04 02:03:38 +00:00
|
|
|
package templates
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/crypto/ssh"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Step represents the default variables available in the CA.
|
|
|
|
type Step struct {
|
|
|
|
SSH StepSSH
|
|
|
|
}
|
|
|
|
|
2020-02-07 19:42:56 +00:00
|
|
|
// StepSSH holds SSH-related values for the CA.
|
2019-10-04 02:03:38 +00:00
|
|
|
type StepSSH struct {
|
2019-10-12 02:26:59 +00:00
|
|
|
HostKey ssh.PublicKey
|
|
|
|
UserKey ssh.PublicKey
|
|
|
|
HostFederatedKeys []ssh.PublicKey
|
|
|
|
UserFederatedKeys []ssh.PublicKey
|
2019-10-04 02:03:38 +00:00
|
|
|
}
|