Commit Graph

2229 Commits (6b13da738bb7d629eef8cd624dce9b9b41eefca5)

Author SHA1 Message Date
Brian Coca 6b13da738b updated module docs, added choices to state 10 years ago
Brian Coca a6223ba43c Merge pull request #2577 from emonty/pass-volume-args
Pass volume args to OpenStack Server creation
10 years ago
Brian Coca 4e8d04d248 Merge pull request #2159 from leonty/devel
Support 'labels' parameter for docker.
10 years ago
Monty Taylor 187a4bd505 Add support for network, boot_from_volume and volumes
nics is a great flexible parameter, but it's wordy. Shade now supports
a simple parameter too, which is just "network" and takes a name or id.
Add passthrough support.

In addition to supporting booting from a pre-existing volume, nova and
shade both support the concept of booting from volume based on an image.
Pass the parameters through.

Shade supports boot-time attachment of additional volumes for OpenStack
instances. Pass through the parameter so that ansible users can also
take advantage of this.
10 years ago
Brian Coca 1590f49618 Merge pull request #2655 from traveloka/fix-ec2-vol
Set the argument type for ec2_vol's encrypted parameter
10 years ago
Brian Coca a876704740 Merge pull request #2239 from boushley/devel
Fix issue with comparing versions improperly
10 years ago
Brian Coca 0250ea1507 Merge pull request #2097 from phanect/gcenet-errormsg
Error message & doc improvement for ipv4_range
10 years ago
Brian Coca ed43b66d77 made note that Z/z are only 2.1 options 10 years ago
Brian Coca 38d651fb82 Merge pull request #2455 from solidm/selinux
Add support for 'z' and 'Z' option for volumes for selinux hosts
10 years ago
Brian Coca f680076686 Merge pull request #2663 from timrchavez/fix_add_ips_to_server
Get new server object after adding floating IP
10 years ago
Chrrrles Paul a56d652c7b Merge pull request #2196 from fennm/vmware_clone_to_folder
Support cloning VMs into a specific VM folder
10 years ago
Chrrrles Paul b4254fe1a4 Merge pull request #2182 from serialdoom/devel
vsphere: automatically add new drives
10 years ago
Timothy R. Chavez b9fe8166fd Get new server object after adding floating IP
We need a new server object once we add the floating ip, otherwise we
will be operating with the older server object pre-floating-ip
assignment.
10 years ago
Michel Alexandre Salim 18f4f5dcc6 Set the argument type for ec2_vol's encrypted parameter
If this is not set, Ansible parses the parameter as a string.
This is fine if the parameter is not provided by the caller, but
if it is set to False or True explicitly, ec2_vol receives this as
the string 'False' or the string 'True', both of which are truthy.

Thus, without this fix, setting the parameter results in encryption
always enabled.
10 years ago
Brian Coca 15dcabe012 Merge pull request #2541 from joshuaeke/patch-1
Update ec2.py remove state tag
10 years ago
Arthur Clement bfcdb05597 Example of single instance with ssd gp2 root volume creation 10 years ago
Brian Coca 43d2ecda06 Merge pull request #2546 from traveloka/fix-ec2-snapshot-info
Fix ec2_snapshot documentation
10 years ago
Toshio Kuratomi cd9a7667aa Don't raise or catch StandardError in amazon modules 10 years ago
Brian Coca ead1028256 Merge pull request #2565 from suonto/devel
Removed unneccessary permission greed
10 years ago
Brian Coca aad7497f18 Merge pull request #2542 from maxrothman/patch-1
Fix rds "promote" command never promoting
10 years ago
Markus Suonto 32edc2f56f fixed quantum_ modules to work with minimum access rights if greater access rights are not needed 10 years ago
Jay Rogers cab97cd2d9 Update in Amazon IAM Policy Documentation
There were typos in the documentation that made the examples seem misleading of what was being demonstrated. This update fixes that.
10 years ago
Brian Coca c428483b24 updated docs to denote retirement of v1 api and clarify when and why auth fields have changed 10 years ago
Lippy Lee b2ace272a5 Make digital_ocean_domain use API v2 10 years ago
Brian Coca 9c30ef8926 doc updates
- added version_added to new api_token
- updated notes to explain API issues, option switch and versions affected.
10 years ago
Michel Alexandre Salim b07ff99cac Fix ec2_snapshot documentation
last_snapshot_min_age is added in 2.0, not 1.9
10 years ago
Max Rothman f1f201c234 Fix rds "promote" command never promoting
Previously, the `promote` command in the `rds` module would always return OK and never actually promote an instance. This was because `promote_db_instance()` had its conditions backwards: if the instance had the `replication_source` attribute indicating that it **was** a replica, it would set `changed = False` and do nothing. If the instance **wasn't** a replica, it would attempt to run `boto.rds.promote_read_replica()`, which would always fail.
10 years ago
joshuaeke ab420300ef Update ec2.py remove state tag
'exact_count' and 'state' are mutually exclusive options they should not be in the following examples:
- # Enforce that 5 running instances named "database" with a "dbtype" of "postgres" example and 
- # Enforce that 5 instances with a tag "foo" are running
10 years ago
Toshio Kuratomi 8ae30f1822 Minor simplification of code 10 years ago
Toshio Kuratomi 5617cd57cf Merge pull request #2512 from erewh0n/ec2-require-all-groups
Fail ec2 module when group names cannot resolve to IDs
10 years ago
Toshio Kuratomi 1270bacee7 Merge pull request #2425 from aioue/patch-5
Update ec2_elb_lb.py
10 years ago
Matt Martz 03035d7a31 Merge pull request #2524 from Shrews/os_image
Bug fix for os_image and min_disk/min_ram
10 years ago
Brian Coca 6bd8020f65 corrected version_added, removed empty alias 10 years ago
Brian Coca b789db7b9d Merge pull request #2211 from kai11/feature/spot_launch_group
Added launch group support for ec2 module
10 years ago
David Shrewsbury d13741314e Bug fix for os_image and min_disk/min_ram
The min_disk and min_ram parameters were not being passed to
the shade API. They also need to be integer values. Also
updated the description of these parameters for better
clarification.
10 years ago
Keith Hassen 39ef6a1a80 Fail if any group name is not resolved to an ID. 10 years ago
Brian Coca 0e043f8c58 Merge pull request #2505 from donckers/devel
Fix #822 - Correct failure to overwrite existing records
10 years ago
Brian Coca 6d722608d6 Merge pull request #2413 from raben2/devel
Absent Function was not working on user with login profile
10 years ago
Daniel Donckers 3b8147af30 Fixes #822 10 years ago
Brian Coca 88e0bfd75d Merge pull request #2492 from Shrews/os_user_group
Fix os_user_group module
10 years ago
Mike Riddle 062c7764e6 Fixed error message: TypeError: fail_json() takes exactly 1 argument (2 given) 10 years ago
Brian Coca 1d6b31a90f fixed break order 10 years ago
David Shrewsbury 2a306c6b8c Fix os_user_group module
This module had a couple of errors in it. Also added check mode
support.
10 years ago
Tom Paine 4bc834485a Update ec2_elb_lb.py 10 years ago
Brian Coca 2c92fc4d3c Merge pull request #2484 from bcoca/ec2_elb_get_really_all
Ec2 elb get really all items
10 years ago
Chrrrles Paul b1c0249045 Merge pull request #2409 from stewrutledge/reconfnetwork
Added support for reconfiguring network
10 years ago
Brian Coca 1258f82648 Merge pull request #2467 from cinek810/fix_ident
It may be string with int comparison, if ansible user specifies ident…
10 years ago
Marcin Stolarek b6223ca729 Save changes of special characters to rset, without that comparison rset.to_xml() == wanted_rset.to_xml() will fail if record contains * or @ characters. 10 years ago
Marcin Stolarek 3193961cf5 It may be string with int comparison, if ansible user specifies identifier as int 10 years ago
Steve Spencer fc5da26dee Sync up with allowable docker volume mounting modes 10 years ago