Brian Coca
3aee4b9469
Merge pull request #2326 from jibsheet/devel
...
Mark this as a string so it is rendered in the docs
2015-11-03 13:10:15 -05:00
Toshio Kuratomi
0de2627efc
Make cache_parameter_group the name of this new param to match with similar params (leave old name as an alias)
2015-11-02 17:33:04 -08:00
Toshio Kuratomi
e16c5c54fd
Revert "Expose cache_parameter_group_name in elasticache module"
...
This PR #1950 implements duplicate functionality to #1353
This reverts commit b04efa22c4
.
Conflicts:
cloud/amazon/elasticache.py
2015-11-02 17:27:54 -08:00
Brian Coca
59b87836d1
Merge pull request #2222 from pgilad/patch-1
...
Add state=running on some ec2 examples
2015-11-02 19:12:25 -05:00
Brian Coca
d6c97bc880
Merge pull request #2381 from gregdek/devel
...
Module ownership changes
2015-11-02 19:00:21 -05:00
Brian Coca
a38e0095f9
added missing version added
2015-11-02 18:54:30 -05:00
Brian Coca
6e905f0586
Merge pull request #1950 from frenchfrywpepper/cache_parameter_group_name
...
Expose cache_parameter_group_name in elasticache module
2015-11-02 18:49:55 -05:00
Toshio Kuratomi
e318be30ff
Fix issues version_added and chaged => changed typo
2015-11-02 10:49:24 -08:00
Michael Schuett
80c2e28a48
Fix message
...
Previous fix did not actual work. This fix does however.
2015-11-02 10:49:24 -08:00
Michael Schuett
b0357bf9e8
Handle connection error
...
Try and help when mac hits a connection error.
2015-11-02 10:49:24 -08:00
Michael Schuett
1dcb31cad6
remove .geturl()
...
Can't call geturl on a string.
2015-11-02 10:49:24 -08:00
Michael Schuett
c126498899
Remove faulty logic
...
Update logic after splitting the error into two separate messages.
2015-11-02 10:49:24 -08:00
Michael Schuett
1e8d20b0da
Documentation Fix
...
Updated documentation to match current module state.
2015-11-02 10:49:24 -08:00
Michael Schuett
0a5b7087bd
Improve Message
...
Give user a course of action in the case where the suggestions do not
work. This will hopefully allow us to work through any further issues
much faster.
2015-11-02 10:49:24 -08:00
Michael Schuett
addbc329be
Improve Error Reporting
...
This will hopefully help mac users be able to quickly resolve any issues
they may find when trying to use this module.
2015-11-02 10:49:24 -08:00
Michael Schuett
bf5929d32a
docker_image TLS
...
Check commit enables using tls when using the docker_image module. It
also removes the default for docker_url which doesn't allow us to check
for DOCKER_HOST which is a more sane default. This allows you to use
docker_image on OSX but more documentation is needed.
2015-11-02 10:49:24 -08:00
Brian Coca
77ded03510
Merge pull request #953 from rwky/asg_542
...
Fixes #542 error when ec2_asg arguments aren't specified
2015-11-02 09:04:42 -05:00
Greg DeKoenigsberg
344cf5fc0e
Remove @ralph-tice from maintainership per his request
2015-10-28 14:47:03 -04:00
Greg DeKoenigsberg
7cb9289197
Clarity of owner, even though module is deprecated
2015-10-28 14:40:54 -04:00
Greg DeKoenigsberg
57dcf2c9dd
@lorin stepping down as maintainer
2015-10-28 14:38:11 -04:00
Brian Coca
30951e2811
Merge pull request #2345 from larsks/bug/port-allow-secgroup-list
...
allow os_port to accept a list of security groups
2015-10-26 19:45:39 -04:00
Brian Coca
7c1fcd8e13
Merge pull request #2349 from larsks/bug/router-should-return-id
...
make os_router return a top level 'id' key
2015-10-26 18:20:26 -04:00
Brian Coca
ad8fd86467
Merge pull request #2338 from larsks/bug/flavor-should-return-id
...
make os_flavor return a top-level 'id' key
2015-10-23 14:52:03 -04:00
Brian Coca
0e0c28bfb1
Merge pull request #2344 from larsks/bug/allow-secgroup-list
...
allow os_server to accept a list of security groups
2015-10-23 14:51:45 -04:00
Brian Coca
3199a73927
Merge pull request #2339 from larsks/bug/keypair-should-return-id
...
make os_keypair return a top level 'id' key
2015-10-23 14:51:27 -04:00
Brian Coca
59f11aa973
Merge pull request #2336 from larsks/feature/os-subnet-returns-something
...
return information about created subnet
2015-10-23 14:51:05 -04:00
Lars Kellogg-Stedman
d82460a372
make os_router return a top level 'id' key
...
make os_router return a top-level 'id' key, much like other
os_* resources.
2015-10-23 13:32:37 -04:00
Lars Kellogg-Stedman
a2fe8dba68
allow os_port to accept a list of security groups
...
with this commit, the `security_groups` attribute for `os_port` will
accept either a common-delimited string or ` YAML list. That is, either
this:
- os_port:
[...]
security_groups: group1,group2
Or this:
- os_port:
[...]
security_groups:
- group1
- group2
2015-10-23 09:44:07 -04:00
Brian Coca
12b0582f9e
Merge pull request #2343 from larsks/bug/secgroup-allow-empty-description
...
allow empty description attribute for os_security_group
2015-10-23 09:43:01 -04:00
Brian Coca
49a66eb8d2
Merge pull request #2337 from larsks/bug/os-network-always-unchanged
...
make os_network correctly report changed status
2015-10-23 09:42:45 -04:00
Lars Kellogg-Stedman
b0c10a7d31
allow os_server to accept a list of security groups
...
This commit allows the `security_groups` parameter of the `os_server`
module to be either a YAML list or a common-delimited string (much like
the `nics` attribute). E.g., this:
- os_nova_server:
[...]
security_groups:
- default
- webserver
Or this:
- os_nova_server:
[...]
security_groups: default,webserver
2015-10-22 22:53:05 -04:00
Lars Kellogg-Stedman
da0fbfc564
allow empty description attribute for os_security_group
...
The `os_security_group` module would fail if there was no `description:`
attribute:
localhost | FAILED! => {
"changed": false,
"failed": true,
"msg": "Error creating security group larstest: Invalid input for
description. Reason: 'None' is not a valid string."
}
This commit makes the default description `''` rather than `None`.
2015-10-22 21:26:47 -04:00
Brian Coca
1ca4543e48
Merge pull request #2315 from Etherdaemon/fix_aws_iam_connection_12831
...
fixes #12831 by updating the boto iam connection method
2015-10-22 16:17:57 -04:00
Lars Kellogg-Stedman
377811dac2
make os_keypair return a top level 'id' key
...
make os_keypair return a top-level 'id' key, much like other os_*
resources.
2015-10-22 13:59:45 -04:00
Lars Kellogg-Stedman
8368da4297
make os_flavor return a top-level 'id' key
...
make os_flavor return a top-level 'id' key, much like other os_*
resources.
2015-10-22 13:56:56 -04:00
Lars Kellogg-Stedman
c54c5c8234
make os_network correctly report changed status
...
The `os_network` module was incorrectly returning changed=False whether
or not the network was created. This commit makes the changed return
value useful.
2015-10-22 13:38:32 -04:00
Lars Kellogg-Stedman
d73f5a4adb
return information about created subnet
...
make os_subnet behave like os_network in terms of returning information
about the created resource. With this commit, os_subnet will return the
created subnet in `subnet` and the subnet id in `id`.
2015-10-22 13:27:17 -04:00
David Shrewsbury
5d73a9a4c5
Fix for routers without external interfaces
2015-10-22 11:52:28 -04:00
Matt Martz
2e49d89be7
Merge pull request #2328 from emonty/bug/is-public
...
Actually pass in is_public to create_image
2015-10-21 19:46:18 -05:00
Monty Taylor
e7bdf7f7f6
Actually pass in is_public to create_image
...
Fixes #2325
2015-10-22 08:52:05 +09:00
Brian Coca
88e7dcf174
fixed mispelled description
2015-10-21 19:39:17 -04:00
Etherdaemon
08559670e5
Update try statement as pointed out by defionscode
2015-10-22 09:12:58 +10:00
Etherdaemon
d6da9c1516
Merge branch 'devel' into fix_aws_iam_connection_12831
2015-10-22 09:09:30 +10:00
Kevin Falcone
735eefb2ca
Mark this as a string so it is rendered in the docs
...
When this was treated as a boolean, sphinx was leaving the Default
column on http://docs.ansible.com/ansible/ec2_module.html blank,
implying it would use AWS's default. In reality, it passes False, which
overrides the defaults at AWS (it's possible to boot an instance which
AWS claims will always have EBS optimization without it because of this
silently passed False).
2015-10-21 16:43:50 -04:00
Toshio Kuratomi
bc3b1abd68
Another fix for docs
2015-10-21 08:40:10 -07:00
Toshio Kuratomi
e41cde3116
Correct docs build
2015-10-21 08:36:08 -07:00
Matt Martz
dc1f0c6f9f
Merge pull request #2319 from Shrews/os_user
...
Add OpenStack Keystone User module
2015-10-20 15:43:50 -05:00
David Shrewsbury
fde149cbe8
Clarify password requirement and add return docs.
2015-10-20 15:49:52 -04:00
David Shrewsbury
cdf7117f7e
Add OpenStack Keystone User module
...
This is a replacement for PR #1598 and fixes #283
2015-10-20 13:29:41 -04:00
Brian Coca
377aaf526c
Merge pull request #2292 from Constantin07/update_ec2_ami_find
...
Included 'block_device_mapping' in the output of module and other mis…
2015-10-20 13:07:00 -04:00