cloudstack-terraform-provider
cloudstack-terraform-provider copied to clipboard
CloudStack Terraform Provider
Enhanced the following resources to support the full api spec. - cloudstack_service_offering_constrained - cloudstack_service_offering_unconstrained - cloudstack_service_offering_fixed I split the service offering API up into multiple resources to make it a...
when an instance is using a custom offering and you change cpu and/or memory in details parameter terraform apply shows the change but the instance itself not. Even if instance...
Provide more info about using the `details` parameter
## Description This PR introduces support for configuring a destination network in outgoing firewall rules, a feature introduced in [API v4.10](https://cloudstack.apache.org/api/apidocs-4.10/apis/createEgressFirewallRule.html). The change is backward-compatible and not a breaking change,...
## Description Add support for creating internal load balancer resources with the possibility to assign instances to the load balancer rule. ## Reason This feature allows users to create an...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.36.0 to 0.45.0. Commits 4e0068c go.mod: update golang.org/x dependencies e79546e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs f91f7a7 ssh/agent: prevent panic on malformed...
Update `resource_cloudstack_security_group` to allow `domainid` or `projectid` https://cloudstack.apache.org/api/apidocs-4.21/apis/createSecurityGroup.html This is breaking since I'm renaming `project` to `projectid` (just more descriptive as to what is expected in this field and matches...
This fix depends on : https://github.com/apache/cloudstack/pull/11875 https://github.com/apache/cloudstack-go/pull/127 To test it - update the go.mod with the following: ``` replace github.com/apache/cloudstack-go/v2 => ``` ### Test performed main.tf ``` resource "cloudstack_traffic_type" "management"...
## issue In the `cloudstack_instance` resource, specifying a `service_offering` by name does not filter the lookup by zone. This can lead to errors when multiple service offerings share the same...
This PR adds a message that `cloudstack_service_offering` is deprecate and might be removed in future releases. Resource is replaced by: https://github.com/apache/cloudstack-terraform-provider/pull/138 - cloudstack_service_offering_constrained - cloudstack_service_offering_unconstrained - cloudstack_service_offering_fixed This is based...