James Tanner
1dead65ff7
Fixes #6454 verify ec2 key fingerprints
11 years ago
Paul Durivage
dee5d58493
Fix issue where a container is created but is not indicating that the state was changed
11 years ago
Michael DeHaan
d9876343b1
Merge pull request #6798 from follower/patch-5
...
Clarify the port value always defaults to 3306
11 years ago
Michael DeHaan
91dba74bf9
Merge pull request #6770 from lemonlatte/fix_default_uri_of_get_xml
...
Fix the default url of get_xml function.
11 years ago
James Cammarata
c98f4c698c
Adding wait/wait_timeout parameters to the ec2_key module
...
Fixes #6455
11 years ago
jctanner
aa37c862db
Merge pull request #6805 from sivel/env-interpreter-fix
...
Fix interpreter lines in a couple of modules
11 years ago
Matt Martz
a4078a4bf8
Use /usr/bin/python instead of /usr/bin/env python
11 years ago
follower
6a78e9e416
Clarify the port value always defaults to 3306
...
While the [boto docs](https://github.com/boto/boto/blob/develop/boto/rds/__init__.py#L253 ) make it seem like the default value of `port` is changed depending on the engine chosen, AFAICT from looking at the code the default value is never changed from 3306.
I think the docs are intended to be read as "the default value used by <engine> is <port> so you should change `port` to that value".
If you don't specify the port value and chose the database engine as PostgreSQL you'll end up with a PostgreSQL instance running on port 3306.
11 years ago
jjshoe
167ca65fcb
module_retention isn't defined anywhere, including the help.
11 years ago
Jim Yeh
afa1d91782
Fix the default url of get_xml function.
...
* This enable a user to configure uri in get_xml function
11 years ago
Matt Way
df9fe6c2b8
don't parse empty stream chunks
11 years ago
James Laska
eff2dc23c7
Use proper YAML quotes to fix webdocs
11 years ago
James Cammarata
a21ab1a94f
Removing wait loop around initial state check during registration
...
Also fixed a bug in which the state parameter was marked as a 'bool'
type, which was breaking execution of the module.
Fixes #6543
11 years ago
James Laska
f5f726d371
Fix YAML docstring that broke webdocs
11 years ago
Cristian Ciupitu
03eb65f25d
Bugfix for gc_storage and s3
...
Make keysum return None if not key_check (this case wasn't covered).
11 years ago
Michael DeHaan
5fc8a6bbd9
Merge pull request #6081 from alexanderpopov1/ec2_vpc-subnet-tagging
...
Added support for tagging subnets in ec2_vpc module
11 years ago
Michael DeHaan
8d0b4e1147
Add version_added to docs.
11 years ago
Michael DeHaan
8ba2b7f8eb
Merge branch 'aws-ec2-egress-rules' of git://github.com/mmoya/ansible into devel
11 years ago
Michael DeHaan
be4e728a8e
Merge branch 'ec2_vpc-multiple-vpcs-support' of git://github.com/alexanderpopov1/ansible into devel
...
Conflicts:
library/cloud/ec2_vpc
11 years ago
Michael DeHaan
289b359139
Merge pull request #6486 from discordianfish/docker-module-add-running
...
Rename present to running, add new present state
11 years ago
Michael DeHaan
9fa0ec57fb
Scrub choices=BOOLEANS from remaining core module references. Correct form in argument_spec is type='dict'.
11 years ago
Michael DeHaan
de5849c89a
Merge branch 'ec2_snapshot' of git://github.com/hkariti/ansible into devel
11 years ago
Michael DeHaan
b27c21ca53
Merge pull request #6730 from sivel/rax-cbs-new
...
New modules: rax_cbs and rax_cbs_attachments
11 years ago
Michael DeHaan
f2168f3964
Merge pull request #6419 from willthames/aws-autoscaling-with-token-and-profile
...
Improvements to ec2 autoscaling modules
11 years ago
Michael DeHaan
775a95fb45
Merge pull request #6616 from willthames/ec2_vol_allow_delete
...
Allow state=absent for ec2_vol
11 years ago
Joshua Conner
2d9130fc23
docker: use type instead of manually casting strings to lists
11 years ago
Joshua Conner
15eaa859b0
docker bugfixes: trim whitespace around list param elements, handle list params being coerced to int or long type
11 years ago
Cristian Ciupitu
368e3c8310
Micro-optimization: replace s.find(x)!=-1 with x in s
...
timeit shows a speedup of ~3x on Python 2.7.5 x86_64.
It also makes the code a bit shorter.
11 years ago
Matt Martz
187cb14911
Implement recommendations from #4864
11 years ago
Christopher H. Laco
4b996bc432
Add Rackspace Cloud Block Storage modules
...
- Add rax_cbs to create/delete cloud block storage volumes
- Add rax_cbs_attachments to attach/detach volumes from servers
11 years ago
Matt Martz
88a91acfde
Support arbitrary extra args in rax module
...
Add extra_create_args and extra_client_args to rax module to support passing
advanced configuration options to client instantiation and server create calls.
11 years ago
Hagai
dbd18bfe3e
Added wait_timeout option
11 years ago
Hagai
e59f4fb85e
ec2_snapshot: Add `wait' and `snapshot_tags' parameters, return more
...
info on success
11 years ago
Ian Pointer
5a5e16776f
Adding type int for count (in line with other cloud modules)
11 years ago
willthames
7d24940d74
Allow state=absent for ec2_vol
...
Add methods to the module to make it more readable and allow reuse
11 years ago
Maykel Moya
f967181318
ec2_group: Document group_desc rule param
11 years ago
Michael DeHaan
595689a9ef
Update documentation YAML syntax.
11 years ago
Maykel Moya
fb1f1ab842
ec2_group: Add documentation for rules_egress
11 years ago
Maykel Moya
a1b8fb88a1
ec2_group: rules are not a required task argument
11 years ago
Maykel Moya
8bd25ee1a4
ec2_group: Request a fresh group object after creation
...
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.
11 years ago
Maykel Moya
ad0ca929b5
ec2_group: Auto create missing groups referenced in rules
...
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-client
11 years ago
Maykel Moya
3231034b6e
ec2_group: Deduplicate rule parsing/validation code
11 years ago
Maykel Moya
0240435459
ec2_group: Add support for handling egress rules
11 years ago
jjshoe
2a80987436
assign_public_ip was actually added in 1.5
...
Checked 1.4.5 and this option doesn't exist. Will check/update/pull docs next.
11 years ago
Michael DeHaan
4888b9266f
Merge pull request #6549 from mattjbray/docker-tty-stdin_open-params
...
docker: add tty and stdin_open options
11 years ago
Michael DeHaan
319fceb64d
add notes about new AWS modules.
11 years ago
Michael DeHaan
65a84667a2
Merge pull request #6540 from Zeekin/devel
...
Add cloud modules ec2_scaling_policy and ec2_metricalarm
11 years ago
joehack3r
e4842b5df2
Update example to include delete on termination
11 years ago
Matt Bray
a351f40fff
docker: add tty and stdin_open options
...
Useful for development environments. Setting these options to true
allows you to `docker attach` to a docker container started with
ansible.
11 years ago
Zeekin
2afa7c691d
Added AWS modules ec2_scaling_policy and ec2_metricalarm for configuring scaling policies for autoscaling groups, and metric alarms.
11 years ago