mhdsulaimzed

Results 2 issues of mhdsulaimzed

Problem: The NewCreatePortForwardingRuleParams function in the CloudStack Go client SDK does not support privateendport and publicendport parameters, though the API and toURLValues method do. Solution: Update the function to include...

``` 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...

enhancement