summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Add OpenStack Router Gateway module"revert-1049-feature/os_router_gatewayMonty Taylor2015-03-312-161/+0
|
* Merge pull request #1049 from emonty/feature/os_router_gatewayMonty Taylor2015-03-312-0/+161
|\ | | | | Add OpenStack Router Gateway module
| * Add OpenStack Router Gateway moduleMonty Taylor2015-03-312-0/+161
|/ | | | Also deprecate old quantum_router_gateway module
* corrected version addedBrian Coca2015-03-311-1/+1
|
* Merge pull request #830 from BlackMesh/develBrian Coca2015-03-311-1/+15
|\ | | | | mysql_user #829: add update_password to mysql_user
| * mysql_user #829: add update_password to mysql_userSolomon Gifford2015-02-201-1/+15
| |
* | added support for postgres9.4 which is now available from amazonBrian Coca2015-03-311-2/+3
| |
* | really fixed docs this timeBrian Coca2015-03-311-1/+1
| |
* | fixed doc issues on cloudformationBrian Coca2015-03-311-4/+2
| |
* | Merge pull request #999 from DavidWittman/service-upstart-bugBrian Coca2015-03-301-1/+1
|\ \ | | | | | | [service] Fix bug with upstart detection
| * | [service] Fix bug with upstart detectionDavid Wittman2015-03-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstart scripts are being incorrectly identified as SysV init scripts due to a logic error in the `service` module. Because upstart uses multiple commands (`/sbin/start`, `/sbin/stop`, etc.) for managing service state, the codepath for upstart sets `self.svc_cmd` to an empty string on line 451. Empty strings are considered a non-truthy value in Python, so conditionals which are checking the state of `self.svc_cmd` should explicitly compare it to `None` to avoid overlooking the fact that the service may be controlled by an upstart script.
* | | Merge pull request #957 from stansonhealth/develBrian Coca2015-03-301-3/+12
|\ \ \ | | | | | | | | postgres_user: skip password changes so pg_authid isn't needed
| * | | code review fixes per #957tedder2015-03-301-2/+3
| | | |
| * | | skip password changes so pg_authid isn't neededtedder2015-03-301-3/+11
|/ / / | | | | | | | | | | | | | | | Some places ([AWS RDS](https://forums.aws.amazon.com/thread.jspa?threadID=151248)) don't have, or don't allow, access to the `pg_authid` table. The only reason that is necessary is to check for a password change. This flag is a workaround so passwords can only be set at creation time. It isn't as elegant as changing the password down the line, but it fixes the longstanding issue #297 that prevented this from being useful on AWS RDS.
* | | Merge pull request #366 from Rob-Johnson/cloudformation-urlBrian Coca2015-03-301-3/+34
|\ \ \ | | | | | | | | cloudformation: allow template_url parameter
| * | | allow both template and template_url parametersRob Johnson2015-03-301-3/+34
|/ / /
* | | Merge pull request #334 from adamchainz/cloudformation_dont_always_need_templateBrian Coca2015-03-301-5/+19
|\ \ \ | | | | | | | | Make cloudformation module's template argument not required in case of stack deletion
| * | | Make cloudformation module's template argument not required in case of stack ↵Adam Chainz2015-03-291-5/+19
| | | | | | | | | | | | | | | | deletion
* | | | Merge pull request #339 from lorin/instance_idBrian Coca2015-03-301-2/+2
|\ \ \ \ | | | | | | | | | | ec2 module: add instance_id alias
| * | | | Use the correct alias syntaxLorin Hochstein2015-03-281-1/+1
| | | | |
| * | | | ec2 module: add instance_id aliasLorin Hochstein2015-03-281-2/+2
| |/ / / | | | | | | | | | | | | Create an alias named instance_id for the instance_ids parameter.
* | | | Merge pull request #1029 from 47lining/sts_support_s3_fix_v3Brian Coca2015-03-301-3/+3
|\ \ \ \ | | | | | | | | | | clean rebase of https://github.com/ansible/ansible-modules-core/pull/102...
| * | | | clean rebase of https://github.com/ansible/ansible-modules-core/pull/1024 on ↵Mick Bass2015-03-291-3/+3
| | | | | | | | | | | | | | | | | | | | a new branch
* | | | | Merge pull request #1011 from zecrazytux/bugreport_265Brian Coca2015-03-301-6/+20
|\ \ \ \ \ | |/ / / / |/| | | | Add body_format for handling of JSON and YAML body
| * | | | Removes YAML body_format optionSébastien Bocahu2015-03-301-6/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It would require adding a dependency to the YAML module while it might not provide much benefit (has anybody seen a HTTP API taking YAML as input ?)
| * | | | Add body_format for handling of JSON and YAML bodySébastien Bocahu2015-03-271-6/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | body_format is a new optional argument that enables handling of JSON or YAML serialization format for the body argument. When set to either 'json' or 'yaml', the body argument can be a dict or list. The body will be encoded, and the Content-Type HTTP header will be set, accordingly to the body_format argument. Example: - name: Facette - Create memory graph uri: method: POST url: http://facette/api/v1/library/graphs status_code: 201 body_format: json body: name: "{{ ansible_fqdn }} - Memory usage" attributes: Source": "{{ ansible_fqdn }}" link: "1947a490-8ac6-4bf2-47c1-ff74272f8b32"
* | | | | removed requirements/boto as it broke documentation as it is duplicated in ↵Brian Coca2015-03-297-7/+0
| | | | | | | | | | | | | | | | | | | | shared aws fragements
* | | | | Merge pull request #1027 from apollo13/patch-1Brian Coca2015-03-292-3/+2
|\ \ \ \ \ | | | | | | | | | | | | Added os.path.expanduser when searching for pip executable.
| * | | | | Added os.path.expanduser to app_path in django_manageFlorian Apolloner2015-03-291-3/+1
| | | | | |
| * | | | | Added os.path.expanduser when searching for pip executable.Florian Apolloner2015-03-291-0/+1
|/ / / / /
* | | | | Merge pull request #318 from preo/ec2-group-empty-rulesBrian Coca2015-03-291-4/+8
|\ \ \ \ \ | | | | | | | | | | | | Allow empty EC2 Security Group rules.
| * | | | | ec2_group allow empty rules.Robert Estelle2014-12-011-4/+8
| | | | | |
* | | | | | Merge pull request #1021 from defionscode/s3_connBrian Coca2015-03-291-15/+15
|\ \ \ \ \ \ | | | | | | | | | | | | | | allow boto profile use with s3
| * | | | | | allow boto profile use with s3Jonathan Davila2015-03-281-15/+15
| | |_|/ / / | |/| | | |
* | | | | | Merge pull request #266 from yosida95/fakes3sBrian Coca2015-03-291-2/+2
|\ \ \ \ \ \ | |/ / / / / |/| | | | | support secure connection on fakes3
| * | | | | support secure connection on fakes3Kohei YOSHIDA2015-03-281-2/+2
|/ / / / /
* | | | | Merge pull request #1019 from rtrauntvein/patch-1Brian Coca2015-03-271-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Specify that "state: reloaded" was added in Ansible 1.9
| * | | | | Specify that "state: reloaded" was added in Ansible 1.9Ryan Trauntvein2015-03-271-1/+1
|/ / / / /
* | | | | Merge pull request #1018 from smiller171/develBrian Coca2015-03-271-1/+2
|\ \ \ \ \ | | | | | | | | | | | | describe choices in alias documentation
| * | | | | describe choices in alias documentationScott Miller2015-03-271-1/+2
|/ / / / /
* | | | | Merge pull request #569 from 47lining/rate-throttling-retries-updateBrian Coca2015-03-271-3/+16
|\ \ \ \ \ | | | | | | | | | | | | add retry with exponential backoff when we receive throttling error code...
| * | | | | add retry with exponential backoff when we receive throttling error code ↵Mick Bass2014-12-251-3/+16
| | | | | | | | | | | | | | | | | | | | | | | | from cloudformation
* | | | | | Merge pull request #566 from 47lining/cloud_modules_sts_support_reduxBrian Coca2015-03-277-141/+59
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | Cloud Modules STS Support Redux
| * | | | | resolve merge conflictsMick Bass2015-03-260-0/+0
| |\ \ \ \ \
| | * | | | | Add support for AWS Security Token Service (temporary credentials) to all ↵Mick Bass2014-12-247-143/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | AWS cloud modules.
| * | | | | | Add support for AWS Security Token Service (temporary credentials) to all ↵Mick Bass2015-03-267-141/+59
|/ / / / / / | | | | | | | | | | | | | | | | | | AWS cloud modules.
* | | | | | Merge pull request #269 from SDFE/rds_subnet_group_paramsBrian Coca2015-03-261-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | use aws connect call in rds_subnet_group that allows boto profile use
| * | | | | | use aws connect call in rds_subnet_group that allows boto profile useTom Wadley2014-11-051-2/+2
| | | | | | |
* | | | | | | Make lack of boto call fail_json instead of sys.exitToshio Kuratomi2015-03-261-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #994
* | | | | | | Merge pull request #256 from SDFE/route53_connect_paramsBrian Coca2015-03-261-2/+3
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Use aws connect calls that allow boto profile use