Merge pull request #5249 from hashicorp/ca-fixes-oss

Minor CA fixes
This commit is contained in:
Kyle Havlovitz 2019-01-22 11:25:09 -08:00 committed by GitHub
commit a731173661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 3 deletions

View File

@ -328,6 +328,9 @@ func (c *ConsulProvider) Sign(csr *x509.CertificateRequest) (string, error) {
if err != nil {
return "", err
}
if providerState.PrivateKey == "" {
return "", ErrNotInitialized
}
// Create the keyId for the cert from the signing private key.
signer, err := connect.ParseSigner(providerState.PrivateKey)

View File

@ -30,3 +30,7 @@ func (s *Server) handleEnterpriseRPCConn(rtype pool.RPCType, conn net.Conn, isTL
func (s *Server) enterpriseStats() map[string]map[string]string {
return nil
}
func (s *Server) intentionReplicationEnabled() bool {
return false
}