VPC configuration

Configure a VPC to host the Graph.Build platform services.

If you intend to write graph models to Amazon Neptune, it is recommended to choose the same VPC as Amazon Neptune.

Once you have chosen your VPC, create a security group to allow requests to reach the Graph.Build service.

We use port 9600 by default for the Graph.Build studio.

aws ec2 authorize-security-group-ingress --group-id sg-graphbuild --protocol tcp --port 9600 --cidr 0.0.0.0/0

This security group is open to the entire internet (0.0.0.0/0) . Ideally you should limit access to a specific ip range if possible. e.g. --cidr x.x.x.x/x

Last updated