Common: Add ssh-key-regex note to TODO

This commit is contained in:
Mike Salvatore 2022-07-07 11:25:33 -04:00
parent e921f90e00
commit 08bb49af0f
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ from .credential_component_schema import CredentialComponentSchema, CredentialTy
class SSHKeypairSchema(CredentialComponentSchema):
credential_type = CredentialTypeField(CredentialComponentType.SSH_KEYPAIR)
# TODO: Find a list of valid formats for ssh keys and add validators
# TODO: Find a list of valid formats for ssh keys and add validators.
# See https://github.com/nemchik/ssh-key-regex
private_key = fields.Str()
public_key = fields.Str()