I am using vcd terraform provider v3.12.0, and terraform v1.8.1. I deployed a vcd_vapp_org_network
with reboot_vapp_on_removal = true
, but when I import it again the reboot_vapp_on_removal
field is absent from the imported terraform state.
vcd_vapp_org_network | Resources | vmware/vcd | Terraform | Terraform Registry says “The current implementation of Terraform import can only import resources into the state. It does not generate configuration.”
I do not know much Go, but I believe this function (which appears to be responsible for importing the vcd_vapp_org_network
) simply does not import the reboot_vapp_on_removal
field.
Does this field count as configuration and not state meaning that, as per the linked docs above, you cannot import it using the terraform import vcd_vapp_org_network.imported org-name.vdc-name.vapp-name.org-network-name
CLI command? Or is this a bug?