- 20 Mar, 2014 8 commits
-
-
Maykel Moya committed
-
When a group is created, an egress_rule ALLOW ALL to 0.0.0.0/0 is added automatically but it's not reflected in the object returned by the AWS API call. After creation we re-read the group for getting an updated object.
Maykel Moya committed -
Suppose a pair of groups, A and B, depending on each other. One solution for breaking the circular dependency at playbook level: - declare group A without dependencies - declare group B depending on A - declare group A depending on B This patch breaks the dependency at module level. Whenever a depended-on group is missing it's first created. This approach requires only two tasks: - declare group A depending on B (group B will be auto created) - declare group B depending on A When creating a group EC2 requires you to pass the group description. In order to fullfil this, rules now accept the `group_desc` param. Note that group description can't be changed once the group is created so it's nice to keep descriptions in sync. Concrete example: - ec2_group: name: mysql-client description: MySQL Client rules_egress: - proto: tcp from_port: 3306 to_port: 3306 group_name: mysql-server group_desc: MySQL Server - ec2_group: name: mysql-server description: MySQL Server rules: - proto: tcp from_port: 3306 to_port: 3306 group_name: mysql-clientMaykel Moya committed -
Maykel Moya committed
-
Maykel Moya committed
-
assign_public_ip was actually added in 1.5
Michael DeHaan committed -
Checked 1.4.5 and this option doesn't exist. Will check/update/pull docs next.
jjshoe committed -
Michael DeHaan committed
-
- 19 Mar, 2014 32 commits
-
-
Michael DeHaan committed
-
git://github.com/echohead/ansible
Conflicts: lib/ansible/inventory/__init__.py
Michael DeHaan committed -
Michael DeHaan committed
-
Michael DeHaan committed
-
Brian Coca committed
-
Brian Coca committed
-
Michael DeHaan committed
-
nate@bx.psu.edu committed
-
nate@bx.psu.edu committed
-
Fix logic in process_common_errors for unbalanced quotes
Michael DeHaan committed -
docker: add tty and stdin_open options
Michael DeHaan committed -
Michael DeHaan committed
-
Add cloud modules ec2_scaling_policy and ec2_metricalarm
Michael DeHaan committed -
Michael DeHaan committed
-
git://github.com/tksmd/ansibleMichael DeHaan committed
-
Michael DeHaan committed
-
irc module: Make default irc color none; add color none
Michael DeHaan committed -
Fixes #4875
James Cammarata committed -
James Tanner committed
-
James Tanner committed
-
James Tanner committed
-
James Tanner committed
-
Fixes #6254
James Cammarata committed -
fixed issue with directory permissions on copy
James Cammarata committed -
Matt Martz committed
-
Make SSL verification on Mac OS X work out of the box
James Cammarata committed -
Also add a unit test for vaulteditor to verify 1.0 passwords with newline chars.
James Tanner committed -
Hipchat callback: Make "notify" flag optional (default off)
Michael DeHaan committed -
Mahemoff committed
-
Mahemoff committed
-
James Tanner committed
-