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
{{ message }}
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
vRA 7.x version
7.6 Terraform version
0.12.19 terraform-provider-vra7 plugin version
0.5.0
Describe the bug
When resource action with name Reconfigureis not defined in resourceActions.Content.Operations i get an error:
Update is not allowed for resource e64b02c9-6f1f-44ed-904a-eb79e17c5a5d, your entitlement has no Reconfigure action enabled
We only use custom resource actions and have disabled Reconfigure action, because it would expose our custom VM properties, which we don't want to. Part of code responsible for throwing error:
for_, op:=rangeresources.Operations {
ifop.Name==sdk.Reconfigure {
reconfigureEnabled=truereconfigureActionID=op.OperationIDbreak
}
}
// if reconfigure action is not available for any resource of the deployment// return with an error messageif!reconfigureEnabled {
returnfmt.Errorf("Update is not allowed for resource %v, your entitlement has no Reconfigure action enabled", resources.ID)
}
Are there any plans for supporting custom resource actions? Thanks
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
vRA 7.x version
7.6
Terraform version
0.12.19
terraform-provider-vra7 plugin version
0.5.0
Describe the bug
When resource action with name
Reconfigure
is not defined inresourceActions.Content.Operations
i get an error:We only use custom resource actions and have disabled
Reconfigure
action, because it would expose our custom VM properties, which we don't want to. Part of code responsible for throwing error:Are there any plans for supporting custom resource actions? Thanks
The text was updated successfully, but these errors were encountered: