summaryrefslogtreecommitdiff
path: root/cloud/cloudstack
Commit message (Collapse)AuthorAgeFilesLines
* Refreshed metadata for extras modulesToshio Kuratomi2016-12-0634-0/+136
|
* cloudstack: cs_ip_address: implement VPC support (#3403)René Moser2016-12-051-44/+18
|
* cloudstack: cs_staticnat: implement VPC support (#3409)René Moser2016-12-051-0/+7
|
* Native YAML - cloud/cloudstack (#3613)Fabio Alessandro Locati2016-12-014-25/+49
|
* cloudstack: new module cs_region (#3568)René Moser2016-11-301-0/+204
|
* cloudstack: cs_instance: implement vpc support (#3402)René Moser2016-11-201-11/+25
| | | | | | * cloudstack: cs_instance: implement vpc support * cloudstack: cs_instance: distinguish VPC and non VPC VMs
* cs_snapshot_policy: extend volume determination (#3500)René Moser2016-11-181-6/+67
|
* cloudstack: cs_snapshot_policy: ignore intervaltype in has_changed (#3499)René Moser2016-11-181-5/+6
| | | Fixes ValueError: invalid literal for int() with base 10: 'daily'
* cloudtack: cs_instance: doc fix for missing tag alias (#3484)René Moser2016-11-161-0/+1
|
* cloudstack: fix state=absent, ip_address not None but falsy (#3483)René Moser2016-11-161-2/+2
|
* cloudstack: new module cs_vpc (#3453)René Moser2016-11-141-0/+387
|\
| * cloudstack: new module cs_vpcRene Moser2016-11-131-0/+387
| |
* | cloudstack: add new module cs_nic (#3392)René Moser2016-11-141-0/+293
|/
* cloudstack: cs_ip_address: fix returns on state=present (#3406)René Moser2016-11-101-2/+1
| | | In case poll_job=false the return must be None
* cloudstack: cs_network: cleanup dublicate VPC code (#3393)René Moser2016-11-091-19/+0
| | | Code has been moved to module utils, also see https://github.com/ansible/ansible/commit/fe05c5e35a0a0a5da0b87ff86c7753eab477d7c5
* cloudstack: fix VPC docRene Moser2016-11-091-6/+5
|
* cloudstack: cs_portforward: fix rule not found if domain is not account's ↵René Moser2016-10-061-0/+4
| | | | | | | domain. (#3093) cs_portforward will not find the rule and tries to create it resulting in an API error. Thanks to @mostkopf for reporting.
* Use addresses and names reserved for documentation (#2894)Robin Schneider2016-09-121-1/+1
| | | | | Trying to preserve the meaning of the examples. Related to: https://github.com/ansible/ansible/issues/17479
* Update cs_volume module to fix typo on force attribute (#2592)lorijoan2016-07-201-1/+1
| | | fixes #2590
* cloudstack: cs_volume: fix volume may be NoneType in check_mode (#2455)René Moser2016-06-201-19/+20
|
* cloudstack: move duplicate common code to utilsRene Moser2016-06-092-56/+0
|
* cloudstack: cs_staticnat: fix static nat was always changed (disabled/enabled)Rene Moser2016-06-091-1/+1
| | | Fixes firewall rules get lost after use of cs_staticnat.
* cloudstack: use has_changed() from utilsRene Moser2016-06-096-8/+8
|
* cloudstack: use poll_job() from utilsRene Moser2016-06-0916-44/+44
|
* cloudstack: cs_cluster: overhaul code styleRene Moser2016-06-091-38/+33
|
* cloudstack: cs_affinitygroup: overhaul code styleRene Moser2016-06-091-33/+29
|
* cloudstack: cs_account: overhaul code styleRene Moser2016-06-091-58/+47
|
* cloudstack: remove duplicate import cs handling, already in utils.Rene Moser2016-06-0929-264/+0
|
* cloudstack: cs_project: fix state=active/suspended does not create/update ↵Rene Moser2016-06-091-5/+2
| | | | project
* cloudstack: cs_project: add tag supportRene Moser2016-06-081-0/+15
|
* cloudstack: cs_snapshot_policy: remove unused arg specs and doc cleanup (#2361)René Moser2016-06-021-6/+4
|
* cloudstack: cs_ip_address: add vpc support (#2283)René Moser2016-05-271-4/+14
| | | | | | * cloudstack: cs_ip_address: add vpc support * cloudstack: cs_ip_address: remove unused/unreachable code
* cloudstack: cs_staticnat: add vpc support (#2285)René Moser2016-05-271-3/+10
| | | | | | * cloudstack: cs_staticnat: add network arg, used for VPC support * cloudstack: cs_staticnat: removed unused code
* cloudstack: cs_firewall: get_network moved to utils, cleanup (#2293)René Moser2016-05-271-26/+0
|
* cloudstack: cs_template: fix typos (#2294)René Moser2016-05-271-2/+2
|
* cloudstack: new module cs_snapshot_policy (#2303)René Moser2016-05-271-0/+323
|
* Merge pull request #2185 from resmo/feature/cs_routerAdrian Likins2016-05-161-0/+383
|\ | | | | cloudstack: new module cs_router
| * cloudstack: new module cs_routerRene Moser2016-05-081-0/+383
| |
* | cs_loadbalancer_rule_member: doc fixes (#2184)René Moser2016-05-091-9/+9
|/
* cs_template: fix missing docs (#2165)René Moser2016-05-051-0/+17
|
* cloudstack, cs_firewall: fix network not found error in return results (#2006)René Moser2016-04-121-5/+8
| | | | | | | | | Only a small issue in results. In case of type is ingress, we rely on ip address, but in results we also return the network. Resolving the ip address works without zone params. If the ip address is not located in the default zone and zone param is not set, the network won't be found because default zone was used for the network query listing. However since network param is not used for type ingress we skip the return of the network in results.
* cloudstack: cs_instance: fix template not found (#2005)René Moser2016-04-121-2/+12
| | | Let users decide which filter should be used to find the template.
* Merge pull request #1923 from resmo/fix/cs-template-absent-cross-zonesRené Moser2016-04-121-13/+15
|\ | | | | cloudstack: cs_template: bug fixes
| * cloudstack: cs_template: fix state=extractedRene Moser2016-04-111-9/+7
| | | | | | | | * url arg is optional but we enforced it * url is in a required together, but args only relevant while registering
| * cloudstack: fix doc, display_text not requiredRene Moser2016-04-111-1/+1
| |
| * cloudstack: cs_template: fix cross_zones template removalRene Moser2016-04-111-3/+7
| |
* | Do not leak passwords in case of error in cloudstack modulesMichael Scherer2016-04-032-2/+2
|/
* Merge pull request #1614 from resmo/feature/cs_zone_factsRené Moser2016-03-151-0/+209
|\ | | | | [2.1] cloudstack: new module cs_zone_facts
| * cloudstack: new module cs_zone_factsRene Moser2016-02-261-0/+209
| |
* | Merge pull request #1591 from resmo/feature/cs_zoneBrian Coca2016-03-031-0/+411
|\ \ | | | | | | [2.1] cloudstack: new module cs_zone