Unused security group - controller.

Change-Id: I784267b244910773af1344a87f328a0463ca3eb7
This commit is contained in:
Sean Handley 2016-07-21 10:45:11 +01:00
parent 7f736f886b
commit ec10cb70ff

@ -20,9 +20,6 @@ api_group = conn.security_groups.create name: "api",
worker_group = conn.security_groups.create name: "worker",
description: "for services that run on a worker node"
controller_group = conn.security_groups.create name: "control",
description: "for services that run on a control node"
services_group = conn.security_groups.create name: "services",
description: "for DB and AMQP services only"
@ -45,25 +42,6 @@ rules = [
from_port: 22,
to_port: 22
},
{
parent_group_id: controller_group.id,
ip_protocol: "tcp",
from_port: 22,
to_port: 22
},
{
parent_group_id: controller_group.id,
ip_protocol: "tcp",
from_port: 80,
to_port: 80
},
{
parent_group_id: controller_group.id,
ip_protocol: "tcp",
from_port: 5672,
to_port: 5672,
group: worker_group.id
},
{
parent_group_id: services_group.id,
ip_protocol: "tcp",