-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
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
Datasource vcd_catalog_vapp_template not working for shared catalog with local org users #960
Comments
+1 Submitted #961 because although it is almost identical the error is not the exact same. |
Hi @martijnhazebroek |
Fixed and merged to main branch |
Any instructions on how to build for windows_amd64? |
You need to have Go 1.19 installed, go to the top of the repository and run :
Then copy the resulting executable into
|
Thank. Tested, and #961 is solved with PR #972 as well. Btw, to build for Windows: $version = "3.8.2"
cd terraform-provider-vcd
$env:GOOS = "windows";$env:GOARCH = "amd64";go build -o terraform-provider-vcd_v$version -f
$target = Join-Path $env:AppData "terraform.d\plugins\registry.terraform.io\vmware\vcd\$version\windows_amd64"
New-Item -ItemType Directory -Path $target -Force
Move-Item -Path "terraform-provider-vcd_v$version" -Destination $target -Force Go can be installed with: |
Thanks for confirming it! |
Terraform Version
Affected Resource(s)
vcd_catalog_vapp_template
Terraform Configuration Files
Expected Behavior
The vApp template in the shared catalog should be found and the data source should return its attributes.
Actual Behavior
Steps to Reproduce
terraform apply
User Access rights
The user is a local org user.
Important Factoids
Executing the same with a user with provider access rights works as expected. So it seems an issue related to access rights.
References
The text was updated successfully, but these errors were encountered: