We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I like that you can use a customization template with your implementation or terraform-provider-vsphere
We run multiple datacenters using a single vCenter server and get the error "default datacenter resolves to multiple instances"
we need to implement something similate to ...rakutentech/terraform-provider-vsphere where you can pass the datacenter, resource pool etc...
if vm.datacenter != "" { dc, err = finder.Datacenter(context.TODO(), vm.datacenter) if err != nil { return err } } else { dc, err = finder.DefaultDatacenter(context.TODO()) if err != nil { return err } } finder = finder.SetDatacenter(dc)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I like that you can use a customization template with your implementation or terraform-provider-vsphere
We run multiple datacenters using a single vCenter server and get the error "default datacenter resolves to multiple instances"
we need to implement something similate to ...rakutentech/terraform-provider-vsphere where you can pass the datacenter, resource pool etc...
The text was updated successfully, but these errors were encountered: