Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 938 Bytes

3.md

File metadata and controls

18 lines (11 loc) · 938 Bytes

To create new security group go to "Services" - "VPC" in the main menu. Then select "Security Groups" link in the "Security" section. As soon as you click on the button "Create Security Group", you will see the following window

Creating Security Group

After new security group is created, select it and copy it's ID to the clipboard. At the bottom of the page you will see information about your new security group. Go to the "Inbound Rules" and add new rules to it

Creating SG rules

Here is explanatio why do we need this inbound rules

  1. SSH (22) - enables ability login to any vm via ssh protocol
  2. HTTP (80) - our website-a and website-b will be available through this port to the outside world
  3. All Trafic - with this rule we allow any traffic inside of our subnetwork, so that vms can talk to each other

You can leave outbound rules as is

Outbound rules