cloudstack-terraform-provider
cloudstack-terraform-provider copied to clipboard
CloudStack Terraform Provider
fixes #160
Fix #115
``` resource "cloudstack_port_forward" "head_node_ssh" { ip_address_id = cloudstack_ipaddress.head_node_public_ip.id forward { protocol = "tcp" private_port = "22" public_port = "22" virtual_machine_id = cloudstack_instance.head_node.id } depends_on = [cloudstack_ipaddress.head_node_public_ip] } ``` is there...
I have the following in my resource config: ``` resource "cloudstack_instance" "test_box" { name = test-box-0 display_name = "test-box-0" details = {cpuNumber = "4", memory = "4096"} } ``` but...
**Actual behaviour:** CIDR list parameter is critical feature when it comes to loadbalancer rules and it is missing at the moment. When you create a loadbalancer rule using resource, it...
Add the ability to attach disks to VMs on creation, to prevent timing issues
Add registry credentials to cks creation, and caàtch failures on creation on for better state
Adds a data source to extract project information
Several data sources and resources have project support. This is to add it to more data sources and resources.