To automatically mount a EFS volume after each reboot, you’ll need to add the following format to /etc/fstab.

You can use the DNS name given by AWS.

<pre lang="bash">fs-12345678:/ /mnt/efs efs defaults,_netdev 0 0

Or the IP address.

<pre lang="bash">10.0.0.22:/ /mnt/efs efs defaults,_netdev 0 0

Mount all with fake and verbose.

<pre lang="bash">
mount -fav