disableSSHHostsListAPI -> disableGetSSHHosts
This commit is contained in:
parent
fb7f57a8df
commit
99c9155467
2 changed files with 12 additions and 12 deletions
|
@ -92,17 +92,17 @@ type ASN1DN struct {
|
||||||
// cas.Options.
|
// cas.Options.
|
||||||
type AuthConfig struct {
|
type AuthConfig struct {
|
||||||
*cas.Options
|
*cas.Options
|
||||||
AuthorityID string `json:"authorityId,omitempty"`
|
AuthorityID string `json:"authorityId,omitempty"`
|
||||||
DeploymentType string `json:"deploymentType,omitempty"`
|
DeploymentType string `json:"deploymentType,omitempty"`
|
||||||
Provisioners provisioner.List `json:"provisioners,omitempty"`
|
Provisioners provisioner.List `json:"provisioners,omitempty"`
|
||||||
Admins []*linkedca.Admin `json:"-"`
|
Admins []*linkedca.Admin `json:"-"`
|
||||||
Template *ASN1DN `json:"template,omitempty"`
|
Template *ASN1DN `json:"template,omitempty"`
|
||||||
Claims *provisioner.Claims `json:"claims,omitempty"`
|
Claims *provisioner.Claims `json:"claims,omitempty"`
|
||||||
Policy *policy.Options `json:"policy,omitempty"`
|
Policy *policy.Options `json:"policy,omitempty"`
|
||||||
DisableIssuedAtCheck bool `json:"disableIssuedAtCheck,omitempty"`
|
DisableIssuedAtCheck bool `json:"disableIssuedAtCheck,omitempty"`
|
||||||
Backdate *provisioner.Duration `json:"backdate,omitempty"`
|
Backdate *provisioner.Duration `json:"backdate,omitempty"`
|
||||||
EnableAdmin bool `json:"enableAdmin,omitempty"`
|
EnableAdmin bool `json:"enableAdmin,omitempty"`
|
||||||
DisableSSHHostsListAPI bool `json:"disableSSHHostsListAPI,omitempty"`
|
DisableGetSSHHosts bool `json:"disableGetSSHHosts,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// init initializes the required fields in the AuthConfig if they are not
|
// init initializes the required fields in the AuthConfig if they are not
|
||||||
|
|
|
@ -602,7 +602,7 @@ func (a *Authority) CheckSSHHost(ctx context.Context, principal, token string) (
|
||||||
|
|
||||||
// GetSSHHosts returns a list of valid host principals.
|
// GetSSHHosts returns a list of valid host principals.
|
||||||
func (a *Authority) GetSSHHosts(ctx context.Context, cert *x509.Certificate) ([]config.Host, error) {
|
func (a *Authority) GetSSHHosts(ctx context.Context, cert *x509.Certificate) ([]config.Host, error) {
|
||||||
if a.GetConfig().AuthorityConfig.DisableSSHHostsListAPI {
|
if a.GetConfig().AuthorityConfig.DisableGetSSHHosts {
|
||||||
return nil, errs.New(http.StatusNotFound, "ssh hosts list api disabled")
|
return nil, errs.New(http.StatusNotFound, "ssh hosts list api disabled")
|
||||||
}
|
}
|
||||||
if a.sshGetHostsFunc != nil {
|
if a.sshGetHostsFunc != nil {
|
||||||
|
|
Loading…
Reference in a new issue