Using VPC security groups for Amazon EC2 instances and mount targets - Amazon Elastic File System

Using VPC security groups for Amazon EC2 instances and mount targets

When using Amazon EFS, you specify Amazon EC2 security groups for your EC2 instances and security groups for the EFS mount targets associated with the file system. A security group acts as a firewall, and the rules that you add define the traffic flow. In the Getting Started exercise, you created one security group when you launched the EC2 instance. You then associated another with the EFS mount target (that is, the default security group for your default VPC). That approach works for the Getting Started exercise. However, for a production system, you should set up security groups with minimal permissions for use with EFS.

You can authorize inbound and outbound access to your EFS file system. To do so, you add rules that allow your EC2 instance to connect to your Amazon EFS file system through the mount target using the Network File System (NFS) port. Take the following steps to create and update your security groups.

To create security groups for EC2 instances and mount targets
  1. Create two security groups in your VPC.

    For instructions, see the procedure "To create a security group" in Creating a Security Group in the Amazon VPC User Guide.

  2. Open the Amazon VPC Management Console at https://console.aws.amazon.com/vpc/, and verify the default rules for these security groups. Both security groups should have only an outbound rule that allows traffic to leave.

To update the necessary access for your security groups
  1. Open the Amazon VPC console at https://console.aws.amazon.com/vpc/.

  2. Add a rule for your EC2 security group to allow inbound access using Secure Shell (SSH) from any host. Optionally, restrict the Source address.

    You don't need to add an outbound rule because the default outbound rule allows all traffic to leave. If this were not the case, you'd need to add an outbound rule to open the TCP connection on the NFS port, identifying the mount target security group as the destination.

    For instructions, see Adding and Removing Rules in the Amazon VPC User Guide.

  3. Add inbound and outbound rules for the mount target.

    • Add an inbound rule for the mount target security group to allow inbound access from the EC2 security group. Identify the EC2 security group as the source.

    • Add an outbound rule to open the TCP connection on all of the NFS ports. Identify the EC2 security group as the destination.

    For instructions, see Adding and Removing Rules in the Amazon VPC User Guide.

  4. Verify that both security groups now authorize inbound and outbound access.

For more information about security groups, see Security Groups for EC2-VPC in the Amazon EC2 User Guide for Linux Instances.