Giuseppe Maxia

Results 61 comments of Giuseppe Maxia

No luck ``` $ terraform plan vcd_org.my-org: Refreshing state... [id=urn:vcloud:org:030c84f4-7ded-4dd0-8509-d63cd000399f] Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: ~...

Using the [newly implemented](https://github.com/vmware/terraform-provider-vcd/pull/909) `vcd_org_ldap` resource, this problem should go away. For example: ``` resource "vcd_org" "dummy" { name = "dummy" full_name = "dummy" is_enabled = "true" stored_vm_quota = 50...

Reproducing this issue is quite difficult. I was able to do it by adding yet another network to the configuration, and running apply/destroy in a loop. After 18 iterations, it...

@NilsBusche does the fix you recommend (moving the wait block outside the guest property `if`) solve the issue for you?

@jpbuecken Thanks for your analysis. This could be one of the contributing causes. However, all functions to create or modify vApp networks are properly locking access to the parent vApp....

How to reproduce: Using an empty vCD, and having the above script filled with the right credentials, run this script: ```shell #!/bin/bash function check_exit_code { exit_code=$? if [ "$exit_code" !=...

No. We made a change that makes the task fail explicitly when previously it was just hanging, but the core issue of this problem is still bothering us. Until we...

A resource for configuring LDAP in organizations has been just merged (PR #909)

Hi, Thanks for reporting this issue. We have considered this problem several times. A few months ago we developed a partial solution: [standalone VMs](https://registry.terraform.io/providers/vmware/vcd/latest/docs/resources/vm) which allow parallel creation of VMs....

Let's keep aside the theoretical limits, because we are not going to reach them within Terraform constraints. We need to strike a compromise between efficiency and maintainability. That's why I...