summaryrefslogtreecommitdiff
path: root/test/legacy/vultr.yml
Commit message (Collapse)AuthorAgeFilesLines
* Vultr: Introducing vultr_network_facts module (#43600)Yanis Guenane2018-08-201-0/+1
| | | | | | | | | | | | | | | | | | | | This commit introduces a new module called vultr_network_facts. This module aims to return the list of networks avaiable in Vultr. Sample available here: ``` "vultr_network_facts": [ { "date_created": "2018-08-02 11:18:49", "id": "net5b62e8991adfg", "name": "mynet", "region": "Amsterdam", "v4_subnet": "192.168.42.0", "v4_subnet_mask": 24 } ] ```
* Vultr: Introducing vultr_network module (#43598)Yanis Guenane2018-08-181-0/+1
| | | | | This commit introduces a new module called vultr_network. It allows a user to manage networks on the Vultr cloud.
* Vultr: Introducing vultr_block_storage_facts module (#43218)Yanis Guenane2018-08-171-0/+1
| | | | | | This commit introduces a new module called vultr_block_storage_facts. This module aims to return the list of block storage volume avaiable in Vultr.
* Vultr: Introducing vultrr_block_storage module (#43202)Yanis Guenane2018-08-171-0/+1
| | | | | This commit introduces a new module called vultr_block_storage/ It allows a user to manage block storage volumes on the Vultr cloud.
* Vultr: Introducing vultr_server_facts module (#43001)Yanis Guenane2018-08-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit introduces a new module called vultr_server_facts. This module aims to return the list of servers avaiable avaiable in Vultr. Sample available here: ``` "vultr_server_facts": [ { "allowed_bandwidth_gb": 1000, "application": null, "auto_backup_enabled": false, "cost_per_month": 5.00, "current_bandwidth_gb": 0, "date_created": "2018-07-19 08:23:03", "default_password": "p4ssw0rd!", "disk": "Virtual 25 GB", "firewallgroup": null, "id": 17241096, "internal_ip": "", "kvm_url": "https://my.vultr.com/subs/vps/novnc/api.php?data=OFB...", "name": "ansibletest", "os": "CentOS 7 x64", "pending_charges": 0.01, "plan": "1024 MB RAM,25 GB SSD,1.00 TB BW", "power_status": "running", "ram": "1024 MB", "region": "Amsterdam", "server_state": "ok", "status": "active", "tag": "", "v4_gateway": "105.178.158.1", "v4_main_ip": "105.178.158.181", "v4_netmask": "255.255.254.0", "v6_main_ip": "", "v6_network": "", "v6_network_size": "", "v6_networks": [], "vcpu_count": 1 } ]
* vultr: rename prefix vr_to vultr_ (#43994)René Moser2018-08-131-17/+17
| | | | | | | | | | | | * vultr: rename modules * replace string vr_ with vultr_ * add deprecation warning * fix sanity tests * add changelog
* Vultr: Introducing vr_startup_script_facts module (#43004)Yanis Guenane2018-07-201-0/+1
| | | | | | | | | | | | | | | | | | | | | This commit introduces a new module called vr_startup_script_facts. This module aims to return the list of startup scripts avaiable avaiable in Vultr. Sample available here: ``` "vultr_startup_script_facts": [ { "date_created": "2018-07-19 08:52:55", "date_modified": "2018-07-19 08:52:55", "id": 327140, "name": "myteststartupscript", "script": "#!/bin/bash\necho Hello World > /root/hello", "type": "boot" } ] ```
* Vultr: Introducing vr_firewall_group_facts module (#42997)Yanis Guenane2018-07-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | This commit introduces a new module called vr_firewall_group_facts. This module aims to return the list of firewall groups avaiable avaiable in Vultr. Sample available here: ``` "vultr_firewall_group_facts": [ { "date_created": "2018-07-17 12:22:51", "date_modified": "2018-07-17 12:24:47", "description": "ansible-firewall-group", "id": "fb5a0876", "instance_count": 0, "max_rule_count": 50, "rule_count": 1 } ] ```
* Vultr: Introducing vr_dns_domain_facts module (#42994)Yanis Guenane2018-07-191-0/+1
| | | | | | | | | | | | | | | | | This commit introduces a new module called vr_dns_domain_facts. This module aims to return the list of DNS domains avaiable avaiable in Vultr. Sample available here: ``` "vultr_dns_domain_facts": [ { "date_created": "2018-07-19 07:31:14", "domain": "ansibletest.com", } ] ```
* Vultr: Introducing vr_user_facts module (#42951)Yanis Guenane2018-07-181-0/+1
| | | | | | | | | | | | | | | | | | | This commit introduces a new module called vr_user_facts. This module aims to return the list of user avaiable avaiable in Vultr. Sample available here: ``` "vultr_user_facts": [ { "acls": [], "api_enabled": "yes", "email": "mytestuser@example.com", "id": "a235b4f45e87f", "name": "mytestuser" } ] ```
* Vultr: Introducing vr_plan_facts module (#42470)Yanis Guenane2018-07-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit introduces a new module called vr_plan_facts. This module aims to return the list of plan avaiable avaiable to use on booted servers. Sample available here: ``` "vultr_plan_facts": [ { "available_locations": [ 1 ], "bandwidth": 40.0, "bandwidth_gb": 40960, "disk": 110, "id": 118, "name": "32768 MB RAM,110 GB SSD,40.00 TB BW", "plan_type": "DEDICATED", "price_per_month": 240.0, "ram": 32768, "vcpu_count": 8, "windows": false } ] ```
* Vultr: Introducing vr_os_facts module (#42473)Yanis Guenane2018-07-181-0/+1
| | | | | | | | | | | | | | | | | | | | This commit introduces a new module called vr_os_facts. This module aims to return the list of OSes avaiable avaiable to use to boot servers. Sample available here: ``` "vultr_os_facts": [ { "arch": "i386", "family": "ubuntu", "id": 216, "name": "Ubuntu 16.04 i386", "windows": false } ] ```
* Vultr: Introducing vr_region_facts module (#42471)Yanis Guenane2018-07-181-6/+7
| | | | | | | | | | | | | | | | | | | | | | | This commit introduces a new module called vr_region_facts. This module aims to return the list of region avaiable avaiable to use where boot servers. Sample available here: ``` "vultr_region_facts": [ { "block_storage": false, "continent": "Europe", "country": "FR", "ddos_protection": true, "id": 24, "name": "Paris", "regioncode": "CDG", "state": "" } ] ```
* Vultr: Introducing vr_sshkey_facts module (#42615)Yanis Guenane2018-07-181-0/+1
| | | | | | | | | | | | | | | | | | This commit introduces a new module called vr_sshkey_facts. This module aims to return the list of SSH keys avaiable in Vultr. Sample available here: ``` "vultr_sshkey_facts": [ { "date_created": "2018-07-10 14:49:13", "id": "5b43c760d7d84", "name": "me@home", "ssh_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+ZFQv3MyjtL1BMpSA0o0gIkzLVVC711rthT29hBNeORdNowQ7FSvVWUdAbTq00U7Xzak1ANIYLJyn+0r7olsdG4XEiUR0dqgC99kbT/QhY5mLe5lpl7JUjW9ctn00hNmt+TswpatCKWPNwdeAJT2ERynZaqPobENgewrwerqewqIVew7qFeZygxsPVn36EUr2Cdq7Nb7U0XFXh3x1p0v0+MbL4tiJwPlMAGvFTKIMt+EaA+AsRIxiOo9CMk5ZuOl9pT8h5vNuEOcvS0qx4v44EAD2VOsCVCcrPNMcpuSzZP8dRTGU9wRREAWXngD0Zq9YJMH38VTxHiskoBw1NnPz me@home" } ] ```
* vultr: add integration tests (#35157)René Moser2018-01-211-0/+16