willthames
cf359df1c5
ec2_elb module: Minor improvements to documentation
...
ELB(s) cause a weird formatting behaviour - it appears as EL**s**
Added choices documentation to the state option
11 years ago
Michael DeHaan
cb6f7748d5
All modules should be using /usr/bin/python in the shebang as ansible_python_interpreter processes this (see FAQ).
...
Fixing for standardization purposes.
11 years ago
Matt Martz
414855560e
Ensure the id attribute is returned for a node
11 years ago
jctanner
4cd821e9d9
Merge pull request #5404 from sivel/rax-improvements
...
rax module: improvements
11 years ago
jctanner
51fc8ef0a0
Merge pull request #5311 from willthames/ec2_refactor
...
ec2 modules: Move more responsibility to common EC2 module
11 years ago
Michael DeHaan
50c600c361
Pass scrub_data by default, see response from DO here: https://www.digitalocean.com/blog
11 years ago
Mikhail Sobolev
ecf78e8c93
fix short/full description for elasticache
11 years ago
Michael DeHaan
3fd2e55619
User report of DO not taking underscores so tweaking docs
11 years ago
willthames
10c06d4e1e
Make state=present the default for ec2_tag
...
Using `ec2_tag` module without the state argument
currently results in:
```
failed: [127.0.0.1] => {"failed": true, "parsed": false}
```
This fix makes `state=present` the default
11 years ago
jctanner
5bfbd57869
Merge pull request #5303 from mohangk/rds_postgres
...
Adds postgres support for Ansible RDS module
11 years ago
willthames
74f9f91abf
Move more responsibility to common EC2 module
...
Moved `AWS_REGIONS` into `ec2` module
Created `ec2_connect` method in `ec2` module
Updated modules able to use `ec2_connect` and `AWS_REGIONS`
11 years ago
Troy C
ff1570ea31
catch exposed cs.exceptions instead of novaclient
11 years ago
Mohan Krishnan
4cc45045d5
Adds postgres support for Ansible RDS module
11 years ago
Troy C
c2d34efd21
import novaclient.exceptions for cs.images.find
...
cs.images.find(human_id= throws novaclient.exceptions.NotFound,
resulting in the try/except block with
image = cs.images.find(name=image) being skipped. catching
novaclient.exception.NotFound allows images to be specified with the
human readable name.
Example:
tasks:
- name: Server build request
local_action:
module: rax
region: DFW
image: Ubuntu 12.04 LTS (Precise Pangolin)
Also, the import is placed after try: import pyrax, because pyrax
imports novaclient and should fail if novaclient is missing.
11 years ago
James Tanner
ee1b117b9e
Set version_added for new_instance_name in cloud/rds module
11 years ago
jctanner
d3ad62320d
Merge pull request #5028 from retr0h/correct-nova-api-auth-check
...
Nova doesn't attempt to auth on obj instantiation
11 years ago
jctanner
291e0111e5
Merge pull request #5052 from bpennypacker/promote_rename
...
cloud/rds module: added promote command & updated modify command to allow for renaming of database instances.
11 years ago
James Tanner
077b923f39
Addresses #5276 update documentation for ec2_ami no_reboot parameter
11 years ago
evan82
18f446eac1
Fix ec2_ami no_reboot setting (currently it will not reboot instances to create the AMI)
...
Line 276: no_reboot = dict(default=True, type="bool"),
This should really default to False (When AMIs are created the machine will reboot before copying the disk).
"When enabled, Amazon EC2 does not shut down the instance before creating the image. When this option is used, file system integrity on the created image cannot be guaranteed."
11 years ago
jctanner
73d89ee4e8
Merge pull request #5231 from jeffnappi/patch-1
...
Corrected documentation in ec2_ami module - no_reboot defaults to yes
11 years ago
Jim Dalton
ab161741a4
Make sure initial_state is initialized
11 years ago
Jim Dalton
557ad6a411
Account for instances that have not yet been registered. Fixes #5076
11 years ago
Jeffrey Nappi
d15eeff010
Corrected documentation in ec2_ami module - no_reboot defaults to yes
11 years ago
David Hummel
fa93e03f22
Fix issue #5043 : ec2_vpc module wait=yes state attribute retrieval
11 years ago
Michael DeHaan
608a0ef220
Merge pull request #5168 from sivel/rax_clb_required_together
...
rax_required_together is a function
11 years ago
Matt Martz
d8be08cf00
rax_required_together is a function
11 years ago
Bruce Pennypacker
8a5d9531db
fixed documentation & added rename example
11 years ago
Michael DeHaan
edc877d6b0
Merge pull request #5133 from joshuaconner/add_docker_max_version_to_docs
...
add supported docker version to docs
11 years ago
Evgenii Terechkov
dc17b0751d
Use ovirtsdk if it installed, but fall out gracefully if it is not
11 years ago
jctanner
21144a3014
Merge pull request #5078 from brandonhilkert/fix-ec2-tags
...
Fix checking for existence of EC2 tags
11 years ago
Joshua Conner
2c09d829cb
add supported docker version to docs
11 years ago
James Tanner
4f9aadcc07
Addresses #5023 Fix import comments
11 years ago
James Tanner
38edad70ac
Fixes #5023 Convert all modules to use new snippet import pattern
11 years ago
jctanner
33f9fd31e9
Merge pull request #4996 from sivel/rax-module-utils
...
Implement ansible.module_utils.rax
11 years ago
James Tanner
576cd98d62
Merge pull request #4502 from dxsarmit/ansible
...
New library/cloud/ec2 module parameter (assign_public_ip) for non-default VPC instance launching.
11 years ago
Michael DeHaan
4c35b7f380
There's a cleaner way to do this, commit to module formatter pending.
...
Revert "No longer need to reference 'version_added' in docs for these, as this was quite a while ago."
This reverts commit ff0a41d446
.
11 years ago
Michael DeHaan
9e4d71203d
No longer need to reference 'version_added' in docs for these, as this was quite a while ago.
11 years ago
Brandon Hilkert
a6879d14ca
Fix checking for existence of EC2 tags
11 years ago
jctanner
4211af0f4a
Merge pull request #5067 from justinludwig/fix-aws-credential-params
...
Fix AWS credential params for ec2_ami, ec2_elb, ec2_tag, ec2_vpc, route53, and s3 modules
11 years ago
Jim Rybarski
b699af75a8
fixed documentation typo about region purpose
11 years ago
Justin Ludwig
bd9e6a74f7
Fix AWS credential params for s3 and other modules
...
The `ec2_ami`, `ec2_elb`, `ec2_tag`, `ec2_vpc`, `route53`, and `s3` modules
all canonicalize the AWS access and secret key params as
`aws_access_key` and `aws_secret_key`. However, following the fixes for #4540 ,
those modules now use `get_ec2_creds` from `lib/ansible/module_utils/ec2.py`,
which requires access/secret key params to be canonicalized as
`ec2_access_key` and `ec2_secret_key`. As a result, AWS credentials passed
to those six modules as parameters are ignored (they instead always use
the AWS credentials specified via environment variables, or nothing).
So this change fixes those six modules to canonicalize the
AWS access and secret key params as `ec2_access_key` and `ec2_secret_key`,
allowing them to again accept AWS credentials passed via module params.
11 years ago
Bruce Pennypacker
5cea67c011
Added promote command to promote read-replicas to standalone databases ( http://aws.amazon.com/about-aws/whats-new/2012/10/11/amazon-rds-mysql-rr-promotion/ ). Added ability for the modify command to rename a database instance via the optional new_instance_name parameter
11 years ago
John Dewey
ef99a3c3fa
Nova doesn't attempt to auth on obj instantiation
...
Need to call nova.authenticate() to validate credentials.
11 years ago
Matt Martz
6dbd7d0d8d
Add ansible.module_utils.rax
11 years ago
Matt Thompson
cc36bb8e95
Add missing exception name
11 years ago
Michael DeHaan
3183d4776f
Merge pull request #4971 from erjohnso/devel
...
fixes #4954 plus updates for gcutil/v1beta16 tests
11 years ago
Eric Johnson
3267d40ff2
fixes #4954 plus updates for gcutil/v1beta16 tests
11 years ago
James Tanner
db28902044
Fix pep8 error in ec2_vpc
11 years ago
James Martin
edb2129fb3
cloudformation parameters no longer required.
11 years ago
Michael DeHaan
08996d78d6
Add version_added to all modules missing version_added information, the docs formatter will now
...
raise errors when omitted, updated changelog with new modules.
11 years ago