Closed
Bug 891871
Opened 12 years ago
Closed 12 years ago
enable VNC access to aws machines
Categories
(Release Engineering :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: bhearsum, Assigned: bhearsum)
Details
Ideally, we would do this just for test machines, but Rail tells me that we can't easily reassign sec groups. With his approval I added an inbound rule for tcp/5900 for the default security group.
| Assignee | ||
Updated•12 years ago
|
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Comment 1•12 years ago
|
||
I created a separate security group for test VMs and applied it to existing slaves:
us-east-1:
from boto.ec2 import connect_to_region
c = connect_to_region("us-east-1")
res = c.get_all_instances(filters={"tag:Name": 'tst-*'})
instances = reduce(lambda a, b: a + b, [r.instances for r in res])
for i in instances:
c.modify_instance_attribute(i.id, "groupset", ["sg-f0f1239f"])
us-west-2:
from boto.ec2 import connect_to_region
c = connect_to_region("us-west-2")
res = c.get_all_instances(filters={"tag:Name": 'tst-*'})
instances = reduce(lambda a, b: a + b, [r.instances for r in res])
for i in instances:
c.modify_instance_attribute(i.id, "groupset", ["sg-8b9f7ce4"])
and reverted changes to the default security group (removed 5900)
Updated•12 years ago
|
Product: mozilla.org → Release Engineering
Updated•7 years ago
|
Component: General Automation → General
You need to log in
before you can comment on or make changes to this bug.
Description
•