You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful to be able to override the root disk offering as part of the compute offering and specify a disk offering as part of the cloudstack_instance resource just like you can via the UI.
Select a Compute Offering
Enable Override root disk offering
Select a disk offering via name or ID from the list available.
The text was updated successfully, but these errors were encountered:
When I added the following code and try to build it locally getting the following exception
"overridediskofferingid": {
Type: schema.TypeString,
Optional: true,
},
if overridediskofferingid, ok := d.GetOk("overridediskofferingid"); ok {
p.SetOverridediskofferingid(overridediskofferingid.(string))
}
cloudstack-terraform-provider git:(add-overridediskofferingid) ✗ go build
# github.com/terraform-providers/terraform-provider-cloudstack/cloudstack
cloudstack/resource_cloudstack_instance.go:291:5: p.SetOverridediskofferingid undefined (type *"github.com/apache/cloudstack-go/v2/cloudstack".DeployVirtualMachineParams has no field or method SetOverridediskofferingid)
It would be useful to be able to override the root disk offering as part of the compute offering and specify a disk offering as part of the cloudstack_instance resource just like you can via the UI.
Select a Compute Offering
Enable Override root disk offering
Select a disk offering via name or ID from the list available.
The text was updated successfully, but these errors were encountered: