Attaching a new EBS volume to an instance does not automatically mount it. To mount the EBS volume:
First format the EBS volume if needed:
mkfs.ext3 /dev/sdf
Add
/dev/sdf /mountpoint ext3 noatime 0 0
to /etc/fstab and then do
mount /mountpoint
after creating the /mountpoint directory.