diff --git a/monkey/common/credentials/ssh_keypair.py b/monkey/common/credentials/ssh_keypair.py index 35f074b13..6b8dcded2 100644 --- a/monkey/common/credentials/ssh_keypair.py +++ b/monkey/common/credentials/ssh_keypair.py @@ -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()