James Cammarata
768de238d4
Merge branch 'vpc_fix' of https://github.com/ebrevdo/ansible into ebrevdo-vpc_fix
11 years ago
napkindrawing
011ec5d9e6
Fix to unescape * was discarded by unescape of @
...
`decoded_name` was created twice, each from `rset.name`
So, the second call to `.replace(r'\100', '@')` overwrites decoded_name, discarding the result of the call to `.replace(r'\052', '*')`
I had a problem with wildcard domains that was fixed by this patch.
11 years ago
James Cammarata
713657d684
Make sure the default ec2_group egress rule is not removed
...
Upon a second run, the default egress rule will be removed when a
vpc is specified but no other egress rules were set. This patch
corrects that behavior by removing the default egress rule from the
list of unmatched outbound rules.
Fixes #7309
11 years ago
Maykel Moya
1d3ce41e83
Fix typo
11 years ago
James Cammarata
d6fc9f1dfc
Fixing two bugs in the ec2_elb_lb module
...
* the current state of the ELB was not reflected properly when checking
the status after a change was made.
* invalid zones caused a traceback when enabling/disabling zones
11 years ago
James Cammarata
faf733bc49
Removing zone choices that overly-limit available zones for gce
...
Fixes #7270
11 years ago
James Cammarata
ce48e1f9ff
Merge pull request #7230 from binarytemple/fix_for_issue_7228
...
fix issue #7228 ec2_vol crash
11 years ago
bryan hunt
88aaa70f0c
fix issue #7228 ec2_vol crash
11 years ago
Atlas Health
49d0ad0644
added example
11 years ago
Atlas Health
4258eb6be7
updated docs to include snapshot_tags option
...
added version
11 years ago
James Cammarata
04793ff640
Merge branch 'patch-2' of https://github.com/budlight/ansible into budlight-patch-2
11 years ago
Michael DeHaan
d5e254d3c7
Merge pull request #6794 from follower/patch-4
...
Make `vpc_security_group` docs more accurate
11 years ago
James Cammarata
d2819e22e3
Merge pull request #7212 from jimi-c/issue_7027_ec2_group_egress_rules
...
Make sure a default allow out rule exists if no other egress rules do
11 years ago
James Cammarata
67092039d7
Merge pull request #7190 from jimi-c/issue_7180_vsphere_guest_hardware_variable_casts
...
Make sure values are integers for certain hardware items for vpshere_guest
11 years ago
James Cammarata
826198196b
Merge branch 'elb' of https://github.com/bpennypacker/ansible into bpennypacker-elb
11 years ago
James Cammarata
50cd3a4a8f
Make sure values are integers for certain hardware items for vpshere_guest
...
Fixes #7180
11 years ago
Ben Holloway
e45d33954b
documentation fix
11 years ago
Ben Holloway
4596521147
attempt to set availability_zones to all if neither availability_zones or vpc_identifier are set
11 years ago
Bruce Pennypacker
dc912ca201
removed unwanted 'if wait else None'
11 years ago
Ben
5a39672efa
documentation fix availability_zones should be required for ec2_asg
11 years ago
Ben
30b634eae9
updated example to include instance_type
11 years ago
Ben
9770c7f47d
Added instance_type to ec2_lc variable list
11 years ago
James Cammarata
3f1545f9db
Fixing the version_added string in the vsphere_guest module
11 years ago
James Cammarata
833ceeca24
Merge branch 'vmware_core' of https://github.com/rhoop/ansible into rhoop-vmware_core
11 years ago
npeters
61bb40c0dd
Remove invalid variable
11 years ago
James Cammarata
16874464e9
Merge pull request #7047 from joshuaconner/docker_bugfix_exclude_entrypoint_from_command_check
...
docker: exclude 'entrypoint' from comparing 'command' param with containers
11 years ago
Richard Hoop
578ba471b1
Author
11 years ago
James Cammarata
060e2193a1
Merge pull request #6991 from joshuaconner/bugfix_dont_send_wrong_params_to_dockerclient_start
...
Docker: don't send wrong parameters to client.start()
11 years ago
Richard Hoop
07ad8432ec
Ready for pull request
11 years ago
Richard Hoop
5692ae95ab
Core complete
11 years ago
James Cammarata
eb090ad4a2
Merge pull request #6599 from dmage/nova_region_name
...
use region_name in nova_compute
11 years ago
James Cammarata
24cfcd1f88
Merge pull request #6985 from jimi-c/issue_6763_ec2_vpc_params
...
Ensure params were set in ec2_vpc before accessing them
11 years ago
Richard Hoop
68d45a6484
Started reconfigured
11 years ago
Ted Timmons
b5895712b3
update documentation to include missing option
...
'list' was added more recently, it was omitted from the documentation.
11 years ago
Richard Hoop
630367ebfc
Creation complete
11 years ago
Richard Hoop
3e75e504e0
More config checks and clean up for vm_config settings
11 years ago
Bruce Pennypacker
2be8feebce
Changed behavior of deregister. If an instance is not found in the ELB then simply return 'changed=false'. Otherwise always remove the instance from the ELB no matter what state its currently in.
11 years ago
Richard Hoop
06c64785fb
Large cleanups. Reintegrating all modules together for a guest
11 years ago
CaptTofu
2990db728a
Small bug - 'acts' should be 'facts'
11 years ago
Joshua Conner
4defd9a15a
docker: exclude 'entrypoint' from comparing 'command' param with containers
...
The JSON the Docker API returns includes the container's ENTRYPOINT value (if it has one) with the 'Command' value. So instead of checking if `container['Command'] == module.params['command']`, we just check that `container['Command'].endswith(module.params['command'])` so the entrypoint won't affect a container being properly classified as matching the module params or not.
Also I refactored a super-long `if` statement into some temporary variables - I did it to help me figure out what was going wrong, and then it makes the code more readable so I kept it.
11 years ago
Joshua Conner
10171dc42b
docker: send 1.10 params if docker-py is new enough version
11 years ago
James Cammarata
1ef0402f03
Make sure a default allow out rule exists if no other egress rules do
...
Fixes #7027
11 years ago
Matt Bray
3948dc2d1d
docker.client.APIError has moved to docker.errors.APIError
...
see 18d4db09ec
11 years ago
James Cammarata
a37a84243b
Check resource_tags value before using it in ec2_vpc
...
Fixes #7024
11 years ago
evanccopengeo
ac64f3c8cf
cleaning up the code a bit more
11 years ago
evanccopengeo
88b30a74d2
fixing bug where if both private_ip and assign_public_p are set ansible fails out
11 years ago
Joshua Conner
0ef288dcc8
Docker: don't send wrong parameters to client.start()
...
As part of being updated for the 1.10 API, a couple of parameters were passed to the docker.client.start() command that it doesn't accept. This caused the module to error out if it tried to start any Docker containers. This removes those parameters so the module works again.
11 years ago
James Cammarata
46ea3155c6
Ensure params were set in ec2_vpc before accessing them
...
Fixes #6763
11 years ago
Michael DeHaan
bc2b4174a5
Merge pull request #6956 from mattjbray/docker-1-10-volumes-from-dns
...
docker: from API 1.10 dns and volumes_from should be passed to start()
11 years ago
Michael J. Schultz
db92301b00
cloud/elasticache: Ensure self.data is iterable
...
- self.data['SecurityGroups'] can return None causing traceback, if that
is the case fallback to an empty list
11 years ago