The ridge residuals are defined as $\epsilon(\lambda)=y-X\beta^{ridge}(\lambda)$, for the model $y_i=x_i^T\beta+e_i$, where $e_i\sim N(0,\sigma^2)$, and $\beta$ is estimated by the ridge regression estimator, i.e $\beta^{ridge}(\lambda)=(X^TX+\lambda I_p)^{-1}X^Ty$.
How do I show that the $var(\epsilon(\lambda))=A^TA\sigma^2$? I have already shown that $E[e(\lambda)]=AX\beta$, where $A=[I_n-X(X^TX+\lambda I_p)^{-1}X^T]$, but my linear algebra is a bit rusty and I'm not sure how to go about it.
Also, am I correct in saying that the ridge residuals will also be normally distributed?