Add missing space in PKI error (#18778)
Signed-off-by: Alexander Scheel <alex.scheel@hashicorp.com> Signed-off-by: Alexander Scheel <alex.scheel@hashicorp.com>
This commit is contained in:
parent
4b4e0437e1
commit
3adfed1af8
|
@ -185,7 +185,7 @@ func (sc *storageContext) getKeyTypeAndBitsForRole(data *framework.FieldData) (s
|
|||
if kmsRequestedFromFieldData(data) {
|
||||
keyId, err := getManagedKeyId(data)
|
||||
if err != nil {
|
||||
return "", 0, errors.New("unable to determine managed key id" + err.Error())
|
||||
return "", 0, errors.New("unable to determine managed key id: " + err.Error())
|
||||
}
|
||||
|
||||
pubKeyManagedKey, err := getManagedKeyPublicKey(sc.Context, sc.Backend, keyId)
|
||||
|
|
Loading…
Reference in New Issue