Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
change managed to created, since we're not actively managing the sg a…
Browse files Browse the repository at this point in the history
…nd we don't want to scare admins away from locking it down
  • Loading branch information
Gabriel Monroy committed Jul 27, 2013
1 parent de7f3fd commit c3e907c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celerytasks/ec2.py
Expand Up @@ -33,7 +33,7 @@ def build_layer(layer, creds, params):
region, creds['access_key'], creds['secret_key'])
# create a new sg and authorize all ports
# use iptables on the host to firewall ports
sg = conn.create_security_group(layer, 'Managed by Deis')
sg = conn.create_security_group(layer, 'Created by Deis')
sg.authorize(ip_protocol='tcp', from_port=1, to_port=65535,
cidr_ip='0.0.0.0/0')

Expand Down

0 comments on commit c3e907c

Please sign in to comment.