jctanner
696ce0effe
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
12 years ago
Jim Rybarski
483bb58f2d
fixed documentation typo about region purpose
12 years ago
Justin Ludwig
26374d89a0
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.
12 years ago
Matt Thompson
8cd465938b
Add missing exception name
12 years ago
Michael DeHaan
82a9387532
Merge pull request #4971 from erjohnso/devel
...
fixes #4954 plus updates for gcutil/v1beta16 tests
12 years ago
Eric Johnson
8ff58eb46e
fixes #4954 plus updates for gcutil/v1beta16 tests
12 years ago
James Tanner
52032b80d4
Fix pep8 error in ec2_vpc
12 years ago
James Martin
592124f129
cloudformation parameters no longer required.
12 years ago
Michael DeHaan
f7c3975f21
Add version_added to all modules missing version_added information, the docs formatter will now
...
raise errors when omitted, updated changelog with new modules.
12 years ago
Michael DeHaan
2726b13245
Changelog updates and a few module renames. vpc -> ec2_vpc, githooks -> github_hooks, blacklist -> kernel_blacklist. These are all new in 1.4 so safe to change.
12 years ago
Michael DeHaan
aee1fcad05
Update changelog, rename vpc module to ec2_vpc.
12 years ago
Tom Berger
8a39e0a615
Update cloud/docker: if the image name containes a repository, strip it.
...
When using repositories other than the main one at docker.io, the image name contains the repo name (which itself contains ":" as a separator between domain and port). We don't really care about it here, so just get rid of it before looking at the image name.
12 years ago
Matt Martz
1ef49405b3
Remove debug print statement
12 years ago
jctanner
7ebda819b5
Merge pull request #4919 from sivel/4577-rax-refactor
...
Refactor rax module. Fixes #4577
12 years ago
Matt Martz
234a78673b
Refactor rax module
12 years ago
Matt Martz
fa4e55d677
follow suit with the rax refactor and split out the slugify code
12 years ago
Matt Martz
545aabaddc
Add rax_facts module for retrieving facts about a Cloud Server
12 years ago
James Tanner
d0986a20a3
Use shared ec2 module snippet in elasticache module
12 years ago
James Tanner
fd6b16aca8
Merge pull request #4313 from jsdalton/ansible
...
Add AWS ElastiCache module
12 years ago
James Tanner
a8c531a2f6
Merge branch 'add_aws_elasticache_module' of git://github.com/jsdalton/ansible into jsdalton-add_aws_elasticache_module
12 years ago
James Tanner
a5c29b886e
Merge pull request #4299 from psvo/ansible
...
Fix check for ROLLBACK_COMPLETE in cloudformation module
12 years ago
jctanner
deb33e9d0e
Merge pull request #4272 from psvo/tags_parameter_for_cloudformation
...
Add support for tags parameter to cloudformation module
12 years ago
James Tanner
0ecc83fe98
Change route53 module to use shared ec2 authorization module snippet
12 years ago
James Tanner
fb903c5317
Change s3 module to use shared ec2 authorization module snippet
12 years ago
James Tanner
06eb7357fd
Remove redundant credential code in vpc module
12 years ago
James Tanner
8332a0b75e
Change vpc module to use shared ec2 authorization moudle snippet
12 years ago
James Tanner
b37a8b90a6
Fix docstring quoting in vpc module
12 years ago
jctanner
7fdeed6539
Merge pull request #4141 from carsongee/vpc
...
Added module for handling AWS Virtual Private Clouds
12 years ago
Michael DeHaan
0a34870b1f
Merge pull request #4858 from sivel/rax-clb-serialize
...
Fix serialization error in rax_clb
12 years ago
Rob Szewczyk
fe95745a20
Correcting the security group id lookup from the list of security group names
12 years ago
Matt Martz
a897bb389c
Remove unused variable
12 years ago
Matt Martz
8f2f8a5b53
DRY up dict conversion and fix serialization error
12 years ago
jctanner
8e8c8efc8f
Merge pull request #4769 from alanfairless/more-password-entropy-revised
...
Revised patch for more password entropy
12 years ago
jctanner
6a5672c997
Merge pull request #4835 from sivel/rax-clb
...
Add module to create Rackspace Cloud Loadblancers. Fixes #4794
12 years ago
Matt Martz
2065253c3e
Rename rax_clb to rax_clb_nodes in docs and examples
12 years ago
jctanner
e36781dace
Merge pull request #4603 from claco/rax_network_module
...
Add rax_network module
12 years ago
Matt Martz
9d684c9e8e
If you try to delete a balancer that isn't there, don't blow up
12 years ago
Matt Martz
772fbb8d0a
Updates to rax_clb module
12 years ago
Christopher H. Laco
0be54b5585
Added replacement rax_clb that does LB detailed creation
12 years ago
Christopher H. Laco
6a964496b1
Renamed rax_clb to rax_clb_nodes since it's node management and not clb creation
12 years ago
jctanner
277dda5373
Merge pull request #4489 from cove/devel
...
add docker module
12 years ago
jctanner
31b5b66eb1
Merge pull request #4776 from jlaska/ec2_wait_on_terminate
...
Honor wait on ec2 instance termination
12 years ago
Christopher H. Laco
f214b9870a
Update module based on upstream feedback
...
- Remove deleted state
- Use dict() instead of raw hash
- Wrap or statements in parens instead of backslash line continuations
- Change instances to networks in module return result
12 years ago
Christopher H. Laco
88083891bb
Add rax_network module
...
Based on the refactor work @sivel is doing, adding a rax_network module
to create/delete networks in the Rackspace Public Cloud.
See: https://github.com/ansible/ansible/issues/4577
12 years ago
jctanner
15a9f7700f
Merge pull request #4760 from urbanmapping/devel
...
make cloudformation module accept template_parameters from command line
12 years ago
Carson Gee
971976ae99
Added module for handling AWS Virtual Private Clouds
...
This handles creating and editing VPCs and takes care of vpcs,
subnets, Internet Gateways, and route tables.
12 years ago
dragon3
e54832a730
Remove duplicate "download_s3file" execution when the destination path doesn't exist
12 years ago
Cove Schneider
1ea17dee11
Fixes from docker-ansible, update license to be same as other modules
12 years ago
Mohan Krishnan
56bd9a14d5
Fix for connect method parameter order
12 years ago
Mohan Krishnan
0ae9128c7b
ec2_eip connect method references module var that is not passed in
12 years ago