Skip to content

@kubricate/plugin-kubernetes / SshAuthSecretProvider / sshAuthSecretSchema

Variable: sshAuthSecretSchema

ts
const sshAuthSecretSchema: ZodObject<{
  known_hosts: ZodOptional<ZodString>;
  ssh-privatekey: ZodString;
}, "strip", ZodTypeAny, {
  known_hosts?: string;
  ssh-privatekey: string;
}, {
  known_hosts?: string;
  ssh-privatekey: string;
}>;