vatesfr / terraform-provider-xenorchestra

Xen Orchestra provider for Terraform
MIT License
150 stars 33 forks source link

New VM's are created with HVM_shadow_multiplier set to 0.9444444444 #177

Closed newknowledg closed 2 years ago

newknowledg commented 2 years ago

I am facing an issue that prevents me from shutting down any vm created using terraform or using terraform to update the vm's it creates.

The problem manifests in the shadow_multiplier. I was provided with a solution to run on the hypervisors shell in order to set this value to one. This will resolve the issue but I would prefer to not have to do this for every new vm I create.

I do not observe this issue when I create vm's manually.

ddelnano commented 2 years ago

@newknowledg I just checked the the VMs I've created with terraform and all of their HVM-shadow-multiplier values are 1.0 so I think there is something else at play here.

[root@localhost ~]# xe vm-list | grep uuid | cut -d ':' -f2 | xargs -I{} xe vm-param-list uuid={} | grep -i hvm-shadow
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000

The terraform provider isn't specifying that value in the Xen orchestra api calls it makes (although it appears the Xen orchestra code base does allow overriding it).

Can you please provide what hypervisor you are running, the version, the version of Xen orchestra you are using and provide your terraform code.

It would also be helpful if you could provide the terraform provider debug logs so I can see specifically what vm.create api call it's making. Could you create another VM using terraform but make sure to specify the following environment variable when doing so TF_LOG=debug terraform plan and TF_LOG=debug terraform apply. Those logs may contain sensitive information so please give them a look before sharing the contents with me.

newknowledg commented 2 years ago

I am running xcp-ng 8.2.0 I will get back to you shortly once I create the new vm

newknowledg commented 2 years ago

@ddelnano output of TF_LOG=debug terraform plan

2021-12-16T10:35:36.268-0500 [INFO]  Terraform version: 1.1.1
2021-12-16T10:35:36.269-0500 [INFO]  Go runtime version: go1.17.2
2021-12-16T10:35:36.269-0500 [INFO]  CLI args: []string{"terraform", "plan"}
2021-12-16T10:35:36.269-0500 [DEBUG] Attempting to open CLI config file: /home/boss/.terraformrc
2021-12-16T10:35:36.269-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2021-12-16T10:35:36.270-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2021-12-16T10:35:36.270-0500 [DEBUG] ignoring non-existing provider search directory /home/boss/.terraform.d/plugins
2021-12-16T10:35:36.270-0500 [DEBUG] ignoring non-existing provider search directory /home/boss/.local/share/terraform/plugins
2021-12-16T10:35:36.270-0500 [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins
2021-12-16T10:35:36.270-0500 [DEBUG] ignoring non-existing provider search directory /usr/share/terraform/plugins
2021-12-16T10:35:36.271-0500 [INFO]  CLI command args: []string{"plan"}
2021-12-16T10:35:36.273-0500 [DEBUG] New state was assigned lineage "c2eee62a-e3f8-fb10-84ad-bf4e0a4d15ec"
2021-12-16T10:35:36.414-0500 [DEBUG] checking for provisioner in "."
2021-12-16T10:35:36.418-0500 [DEBUG] checking for provisioner in "/usr/bin"
2021-12-16T10:35:36.418-0500 [INFO]  backend/local: starting Plan operation
2021-12-16T10:35:36.419-0500 [DEBUG] created provider logger: level=debug
2021-12-16T10:35:36.419-0500 [INFO]  provider: configuring client automatic mTLS
2021-12-16T10:35:36.432-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0 args=[.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0]
2021-12-16T10:35:36.432-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0 pid=51165
2021-12-16T10:35:36.432-0500 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0
2021-12-16T10:35:36.440-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.17.0: configuring server automatic mTLS: timestamp=2021-12-16T10:35:36.440-0500
2021-12-16T10:35:36.478-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: plugin address: address=/tmp/plugin007135620 network=unix timestamp=2021-12-16T10:35:36.478-0500
2021-12-16T10:35:36.478-0500 [DEBUG] provider: using plugin: version=5
2021-12-16T10:35:36.524-0500 [DEBUG] No provider meta schema returned
2021-12-16T10:35:36.525-0500 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-12-16T10:35:36.526-0500 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0 pid=51165
2021-12-16T10:35:36.526-0500 [DEBUG] provider: plugin exited
2021-12-16T10:35:36.526-0500 [DEBUG] Building and walking validate graph
2021-12-16T10:35:36.527-0500 [DEBUG] ProviderTransformer: "xenorchestra_vm.vm" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.527-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_pool.pool" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.527-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_template.vm_template" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.527-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_sr.sr" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.527-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_network.network" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.527-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_template.vm_template" references: []
2021-12-16T10:35:36.527-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_sr.sr" references: [data.xenorchestra_pool.pool]
2021-12-16T10:35:36.527-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_network.network" references: [data.xenorchestra_pool.pool]
2021-12-16T10:35:36.527-0500 [DEBUG] ReferenceTransformer: "output.all-ipv4ips-for-vm" references: [xenorchestra_vm.vm]
2021-12-16T10:35:36.527-0500 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/terra-farm/xenorchestra\"]" references: []
2021-12-16T10:35:36.527-0500 [DEBUG] ReferenceTransformer: "xenorchestra_vm.vm" references: [data.xenorchestra_template.vm_template data.xenorchestra_network.network data.xenorchestra_sr.sr]
2021-12-16T10:35:36.527-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_pool.pool" references: []
2021-12-16T10:35:36.528-0500 [DEBUG] Starting graph walk: walkValidate
2021-12-16T10:35:36.528-0500 [DEBUG] created provider logger: level=debug
2021-12-16T10:35:36.528-0500 [INFO]  provider: configuring client automatic mTLS
2021-12-16T10:35:36.542-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0 args=[.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0]
2021-12-16T10:35:36.542-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0 pid=51181
2021-12-16T10:35:36.542-0500 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0
2021-12-16T10:35:36.550-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.17.0: configuring server automatic mTLS: timestamp=2021-12-16T10:35:36.549-0500
2021-12-16T10:35:36.590-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: plugin address: address=/tmp/plugin796409392 network=unix timestamp=2021-12-16T10:35:36.590-0500
2021-12-16T10:35:36.590-0500 [DEBUG] provider: using plugin: version=5
2021-12-16T10:35:36.634-0500 [DEBUG] No provider meta schema returned
2021-12-16T10:35:36.638-0500 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-12-16T10:35:36.639-0500 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0 pid=51181
2021-12-16T10:35:36.639-0500 [DEBUG] provider: plugin exited
2021-12-16T10:35:36.639-0500 [INFO]  backend/local: plan calling Plan
2021-12-16T10:35:36.639-0500 [DEBUG] Building and walking plan graph for NormalMode
2021-12-16T10:35:36.639-0500 [DEBUG] ProviderTransformer: "xenorchestra_vm.vm (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.639-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_pool.pool (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.639-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_template.vm_template (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.639-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_sr.sr (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.639-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_network.network (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T10:35:36.640-0500 [DEBUG] ReferenceTransformer: "xenorchestra_vm.vm (expand)" references: [data.xenorchestra_template.vm_template (expand) data.xenorchestra_network.network (expand) data.xenorchestra_sr.sr (expand)]
2021-12-16T10:35:36.640-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_pool.pool (expand)" references: []
2021-12-16T10:35:36.640-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_template.vm_template (expand)" references: []
2021-12-16T10:35:36.640-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_sr.sr (expand)" references: [data.xenorchestra_pool.pool (expand)]
2021-12-16T10:35:36.640-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_network.network (expand)" references: [data.xenorchestra_pool.pool (expand)]
2021-12-16T10:35:36.640-0500 [DEBUG] ReferenceTransformer: "output.all-ipv4ips-for-vm" references: [xenorchestra_vm.vm (expand)]
2021-12-16T10:35:36.640-0500 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/terra-farm/xenorchestra\"]" references: []
2021-12-16T10:35:36.641-0500 [DEBUG] Starting graph walk: walkPlan
2021-12-16T10:35:36.644-0500 [DEBUG] created provider logger: level=debug
2021-12-16T10:35:36.644-0500 [INFO]  provider: configuring client automatic mTLS
2021-12-16T10:35:36.658-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0 args=[.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0]
2021-12-16T10:35:36.658-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0 pid=51190
2021-12-16T10:35:36.658-0500 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0
2021-12-16T10:35:36.666-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.17.0: configuring server automatic mTLS: timestamp=2021-12-16T10:35:36.666-0500
2021-12-16T10:35:36.699-0500 [DEBUG] provider: using plugin: version=5
2021-12-16T10:35:36.699-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: plugin address: address=/tmp/plugin168923975 network=unix timestamp=2021-12-16T10:35:36.699-0500
2021-12-16T10:35:36.748-0500 [DEBUG] No provider meta schema returned
2021-12-16T10:35:36.750-0500 [WARN]  ValidateProviderConfig from "provider[\"registry.terraform.io/terra-farm/xenorchestra\"]" changed the config value, but that value is unused
2021-12-16T10:35:36.775-0500 [DEBUG] Resource instance state not found for node "data.xenorchestra_template.vm_template", instance data.xenorchestra_template.vm_template
2021-12-16T10:35:36.775-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_template.vm_template" references: []
2021-12-16T10:35:36.775-0500 [DEBUG] Resource instance state not found for node "data.xenorchestra_pool.pool", instance data.xenorchestra_pool.pool
2021-12-16T10:35:36.775-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_pool.pool" references: []
2021-12-16T10:35:36.789-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: 2021/12/16 10:35:36 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:pool]] and received map[f212dec4-4682-6045-6dae-1fe80229e66f:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f HA_enabled:false cpus:map[cores:16 sockets:1] current_operations:map[] default_SR:8fd11492-f4b9-762c-1583-373ff9b305e9 id:f212dec4-4682-6045-6dae-1fe80229e66f master:b2fae86d-40b5-433b-8fd2-09444f2e06d2 name_description: name_label:xcp-ng-Homelab otherConfig:map[auto_poweron:true memory-ratio-hvm:0.25 memory-ratio-pv:0.25] tags:[] type:pool uuid:f212dec4-4682-6045-6dae-1fe80229e66f xosanPackInstallationTime:<nil> zstdSupported:true]]: result with error: <nil>
2021-12-16T10:35:36.789-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: 2021/12/16 10:35:36 [DEBUG] Found the following objects for type 'client.Pool' from xo.getAllObjects: [{Id:f212dec4-4682-6045-6dae-1fe80229e66f NameLabel:xcp-ng-Homelab Description: Cpus:{Cores:16 Sockets:1} DefaultSR:8fd11492-f4b9-762c-1583-373ff9b305e9 Master:b2fae86d-40b5-433b-8fd2-09444f2e06d2}]
2021-12-16T10:35:36.789-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: 2021/12/16 10:35:36 [DEBUG] Found pool with {Id:f212dec4-4682-6045-6dae-1fe80229e66f NameLabel:xcp-ng-Homelab Description: Cpus:{Cores:16 Sockets:1} DefaultSR:8fd11492-f4b9-762c-1583-373ff9b305e9 Master:b2fae86d-40b5-433b-8fd2-09444f2e06d2}
2021-12-16T10:35:36.790-0500 [DEBUG] Resource instance state not found for node "data.xenorchestra_sr.sr", instance data.xenorchestra_sr.sr
2021-12-16T10:35:36.790-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_sr.sr" references: []
2021-12-16T10:35:36.790-0500 [DEBUG] Resource instance state not found for node "data.xenorchestra_network.network", instance data.xenorchestra_network.network
2021-12-16T10:35:36.790-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_network.network" references: []
2021-12-16T10:35:36.799-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: 2021/12/16 10:35:36 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM-template]] and received map[0c356be3-6325-177b-6e48-0498470a81b3:map[$VBDs:[a511e595-bac6-4682-b7c4-d8a94937daf1] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[45c6eefa-e6cd-7115-1aba-33857411c358] addresses:map[0/ipv4/0:192.168.0.36 0/ipv6/0:fd00:ac20:2ebf:2572:70f8:acff:fe17:c26f 0/ipv6/1:2607:fea8:4fc0:56:70f8:acff:fe17:c26f 0/ipv6/2:fe80::70f8:acff:fe17:c26f] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:1 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0c356be3-6325-177b-6e48-0498470a81b3 installTime:<nil> mainIpAddress:192.168.0.36 memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.442450944e+09 static:[5.36870912e+08 6.442450944e+09]] name_description:template name_label:Matrix os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-9-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:65808867-2d70-3fc4-8f3a-d0d414fd2d62] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:0c356be3-6325-177b-6e48-0498470a81b3 vga:std videoram:8 virtualizationMode:hvm] 47b104d0-69b3-08e2-4108-bebefdadcac0:map[$VBDs:[594d489a-6db9-dda9-0dee-a6e5637dedbd bb3e3e27-d313-325e-8e1f-d0ef303133cb] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[c4fe9375-84d3-e84f-ec70-f3da1672ef55] addresses:map[0/ipv4/0:192.168.3.37 0/ipv6/0:fe80::78bd:658a:cb:6c4c] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:47b104d0-69b3-08e2-4108-bebefdadcac0 installTime:<nil> mainIpAddress:192.168.3.37 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.147483648e+09 4.294967296e+09]] name_description: name_label:CentOS _clone os_version:map[distro:centos major:7 minor:9 name:CentOS Linux release 7.9.2009 (Core) uname:3.10.0-1160.el7.x86_64] other:map[base_template_name:CentOS 7 import_task:OpaqueRef:b1cc289c-1201-49ec-9c68-56fb963c641c install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ec0dcea1-0396-3457-dcfc-525946c893e8] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:47b104d0-69b3-08e2-4108-bebefdadcac0 vga:std videoram:8 virtualizationMode:hvm] 656c51b8-9aee-0ee5-5152-c47986673e44:map[$VBDs:[72268e59-f8a1-bbd6-36da-3d0a537ee635 7edf44ac-f223-dd2c-f9f2-e941c4c2c3fc] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[85994cd2-c8b6-56c1-37a6-b0edf51312fd] addresses:map[0/ipv4/0:192.168.5.25 0/ipv6/0:fe80::b4f3:d9ff:fe46:2bb4] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] cpuCap:<nil> current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:656c51b8-9aee-0ee5-5152-c47986673e44 installTime:<nil> mainIpAddress:192.168.5.25 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Debian 10 Cloudinit ready template from XO Hub name_label:Debian 10 Cloudinit os_version:map[distro:debian major:10 minor:1 name:Debian 10.1 uname:4.19.0-6-amd64] other:map[base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:e915ab7a-9d8b-44d1-be44-d35c3656c973 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a5f442c2-f2ee-0ce6-08da-7f8b5d21b7dd xo:resource:namespace:Debian10 xo:resource:xva:id:a677aa91-f5d5-46ec-bd53-956b73fc7871 xo:resource:xva:version:1.0.0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:656c51b8-9aee-0ee5-5152-c47986673e44 vga:cirrus videoram:8 virtualizationMode:hvm] 6f73645b-80bf-54d5-82a9-72d83b84cba2:map[$VBDs:[cc91904a-117a-6190-9d31-dfbea5be95f9 61986d31-7a83-7996-d2ba-053be34b7c78] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[4bf96f83-86b5-6424-08ae-b5d7bb26f9e0] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:6f73645b-80bf-54d5-82a9-72d83b84cba2 installTime:<nil> mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:AMI os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:85e0cf48-933b-dc5c-6fd0-9f59b12ea1e5] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:6f73645b-80bf-54d5-82a9-72d83b84cba2 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:1097d702-a088-4f27-a48f-34d956decee2:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:uefi order:cd] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:1097d702-a088-4f27-a48f-34d956decee2 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2019 (64-bit). name_label:Windows Server 2019 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:4a9f6fcb-2a7f-4720-99c4-159aa86b7890 install-methods:cdrom mac_seed:83cad216-0249-48c9-b6f0-35c6e622cbfe] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:d986ea98-09fa-4e9a-9ee6-e6c78119496f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:16fdfde2-8749-4dfe-8907-5d7b22f89b74:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:16fdfde2-8749-4dfe-8907-5d7b22f89b74 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Scientific Linux 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:605d01b5-49f4-41e5-8108-1dc543e86a0d install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:f8756196-40c7-4796-884b-f942aef36ccb] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:4b116889-af64-42af-ba86-75dcb3cb7828 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:1e92b45a-2e39-4786-9b6c-1e1e911a22f7:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:1e92b45a-2e39-4786-9b6c-1e1e911a22f7 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Oracle Linux 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:6f4cedbc-d663-4b63-9aa4-2853e5c2251a install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7a9f10dd-6061-42f6-b0b6-ef4edcb6199b] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:f873abe0-b138-4995-8f6f-498b423d234d vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:21158b66-f5dd-4b00-b7eb-530dcb2761fa:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:21158b66-f5dd-4b00-b7eb-530dcb2761fa installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Buster 10 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:772d48b3-323b-4278-be18-2007d89e2d4c install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:f937d909-84bb-4e63-812f-5b753d0e1a2b] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:bac315b4-66fd-4488-82f5-9808e927b4b9 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:25d89b97-91ce-4e24-96ce-2f1438592100:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:25d89b97-91ce-4e24-96ce-2f1438592100 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Server 12 SP4 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:37843877-05d7-4052-986c-a66fbd3bce73 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e40ca246-9cc9-4d59-8e14-43a813c75190] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:c060fa00-8c96-4eb8-bcc9-772daaa01885 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:2627b62b-2ae4-41ef-8c39-57233b30d6c9:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:2627b62b-2ae4-41ef-8c39-57233b30d6c9 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Red Hat Enterprise Linux 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:0e2ac206-f81a-4a0b-b3e1-f85a2d7b5b39 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:c6c2b7ed-5360-4c3c-a9b3-e32789c219bb] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:03d30863-86a2-428e-94c8-88ddfcb8cd29 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:275321e5-73b0-42e3-8300-66f927c28558:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:275321e5-73b0-42e3-8300-66f927c28558 installTime:<nil> memory:map[dynamic:[5.36870912e+08 5.36870912e+08] size:5.36870912e+08 static:[2.68435456e+08 5.36870912e+08]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Stretch 9.0 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:4e9db972-7639-4ba7-a751-b09af8630722 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29532737-9871-4968-80ca-cdf2b880b892] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:381ebb02-96d5-11e7-92b9-b8ca3a97c5fc vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:2a4f9d82-cc4c-44e8-a403-9d83eb20d1f4:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:2a4f9d82-cc4c-44e8-a403-9d83eb20d1f4 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2012 R2 (64-bit). name_label:Windows Server 2012 R2 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:5e9ed431-e728-40ca-98d6-f144ea4118cd install-methods:cdrom mac_seed:8ad32900-3c4d-49cc-898f-6d6d3c5ceefb] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:17a818b5-20a6-4d34-a7ef-320da9ef4c14 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:3b2e938d-603b-440b-ad4c-687960250ba8:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:3b2e938d-603b-440b-ad4c-687960250ba8 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise 15 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:d9e53f1b-a4f5-4d9d-b6a9-9c2a9982d750 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a08ee729-6d0a-463a-9225-a4e5e1418ff9] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:b5915805-d800-459d-826a-322dc9cf07e2 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:4241ebfa-45cf-4c57-9146-310fc12ae385:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:uefi order:cd] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:4241ebfa-45cf-4c57-9146-310fc12ae385 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 10 (64-bit). name_label:Windows 10 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:02842a2a-d283-4927-b096-a0e1ea5d2d7b install-methods:cdrom mac_seed:48d55dba-96c0-4c46-9205-fa7b741cb5cc] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:7774689b-4ca1-4dea-8545-dddd6b64c17f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:46eff517-c646-45af-91be-2ca41a1becd7:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:46eff517-c646-45af-91be-2ca41a1becd7 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Ubuntu Bionic Beaver 18.04 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:180dfd1d-1333-4e4c-9578-c7113763befa install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:5803bfac-6154-4beb-91b1-6c84fb6e2436] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:74ae424d-a1d3-4d96-9827-d1d60a4c7511 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:47d51913-f066-49f2-be19-487797d1241e:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:47d51913-f066-49f2-be19-487797d1241e installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Server 12 SP3 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:7a3825c0-3214-4c39-8b43-83850869c25a install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:0ac93ae8-2c7d-4d1e-9c5f-922e0273fc70] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:47fb0ec8-a0d5-46b8-a995-5455bf845bc7 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:4a9c9222-1133-423b-9813-81a74aad5a3a:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:4a9c9222-1133-423b-9813-81a74aad5a3a installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Oracle Linux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:a4ea6f67-f5d9-4934-acec-c15be24a426f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:09043d31-1ef4-4e5a-9672-85f5da96beca] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:6959dfe8-534c-4c58-8a8c-3c3792293543 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:4b5a11c5-1557-4484-805f-eb2d02e6d66f:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:4b5a11c5-1557-4484-805f-eb2d02e6d66f installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 10 (32-bit). name_label:Windows 10 (32-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:12fc234c-b4d8-45df-a1a0-b3e1e1b3f528 install-methods:cdrom mac_seed:4c123b70-c390-46d9-bb1e-b43efd287cbe] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:9caee571-3b07-4673-940d-1d687b2818d6 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:50d0d421-f00d-4b36-b02b-8fae81008c73:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:50d0d421-f00d-4b36-b02b-8fae81008c73 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Server 12 SP5 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:0409ffcb-b3aa-4225-90e6-4f9de939838a install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:589a633c-8e76-44f1-bd24-373dccebccc3] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:110ecfa7-0fe4-4b35-a247-0b0141a738ba vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:51b51c64-f5b5-4f34-a968-8be175aeac13:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:51b51c64-f5b5-4f34-a968-8be175aeac13 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Ubuntu Focal Fossa 20.04 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:edd9074a-3f57-4188-879b-b09fb1ef799e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:19603684-a0d3-4dfd-8a77-71bd3d22b84c] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:2cf37285-57bc-4633-a24f-0c6c825dda66 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:59b790e9-af70-49bc-a0b4-8a6199957064:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:59b790e9-af70-49bc-a0b4-8a6199957064 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Gooroom Platform 2.0 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:ae13ca18-e8bf-431c-a0ce-e6fd0db9e865 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:1e1ccddd-52ac-4ad3-a54b-fb3406f8b5d4] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:9340090e-90ca-11ea-ab10-2e858157d830 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:60daf2bb-1409-4521-8fd8-b3e84c971814:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:60daf2bb-1409-4521-8fd8-b3e84c971814 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 8.1 (32-bit). name_label:Windows 8.1 (32-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="25769803776" sr="" type="system"/></provision> import_task:OpaqueRef:fabe21a5-d840-49f5-bd21-1d362facd96e install-methods:cdrom mac_seed:19849b5e-23d8-4651-848c-030609c56062] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:2.5769803776e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:4383f051-cc9e-48d5-99e9-8fa2e979e2d0 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:6353c9eb-378b-48a2-9c6b-e5bb48c47733:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:6353c9eb-378b-48a2-9c6b-e5bb48c47733 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2012 (64-bit). name_label:Windows Server 2012 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:a8cc04e6-aaef-42c3-8d45-b46dbc1293d8 install-methods:cdrom mac_seed:dee5fe3e-4abb-48a9-b90a-43f40419040b] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:83af4ddb-e029-48ff-ba7a-11a23ff99caa vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:69943b6c-fae7-49b6-8c47-125e5d3415c9:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:69943b6c-fae7-49b6-8c47-125e5d3415c9 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Red Hat Enterprise Linux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:427f0706-bf1c-4b7f-9684-53259ec52eb9 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:eae3f3a3-82e1-4027-8d23-d059fdab40b4] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:612863ed-900d-456d-b4b7-38b70915fd1f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:735654b3-dfa1-41e8-a548-ab33bf42046e:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:735654b3-dfa1-41e8-a548-ab33bf42046e installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Rocky Linux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:6ea196eb-ec03-43b1-9aeb-d0899794a5bf install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:f4beae43-668b-426e-b79b-9d8099d3d57a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:6ce77bf9-ab30-4a1a-a757-011b52d89997 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:74d082da-e833-45d1-91c7-98db7c809e09:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:74d082da-e833-45d1-91c7-98db7c809e09 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Bullseye 11 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:0bd9ae76-be8f-431d-9d0f-42a4cb94f0ef install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:1827b8f4-9032-4ba0-ac93-ea03b048dd65] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:bfb0c8e5-e1db-4a32-9d85-757b3de0f19f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:9fa313f0-f93d-42d9-ad5d-24c801f099eb:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:9fa313f0-f93d-42d9-ad5d-24c801f099eb installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:AlmaLinux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:c7939cc0-915c-42d7-9b09-55e543beee45 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7587a805-3396-4ca6-be87-3265c476559a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:7aa32be8-a06c-4ade-8a1d-49e51e03e9d2 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:a25ec42d-060c-410d-ade3-2b8846404069:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:a25ec42d-060c-410d-ade3-2b8846404069 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Desktop 12 SP4 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:df1c94ad-2548-4b17-b581-a576eaa5f5b5 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:07dda179-1e44-4fa5-ab19-856a952b7494] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:847f7f36-6da8-487d-940d-f0f06939a1b6 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:a6aed9d6-b4df-4978-816a-d20c55b76b11:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:a6aed9d6-b4df-4978-816a-d20c55b76b11 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Desktop 12 SP3 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:d8aabbf8-0b5a-42fe-863b-6eaea2272e83 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:3788c138-ef92-40bf-98f4-07a33a68af72] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:dda40663-76e5-45dd-a644-7eb0bed6a1f7 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:b91f31d8-aa99-47a2-b83e-e2d7b728b20b:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:b91f31d8-aa99-47a2-b83e-e2d7b728b20b installTime:<nil> memory:map[dynamic:[2.68435456e+08 2.68435456e+08] size:2.68435456e+08 static:[1.34217728e+08 2.68435456e+08]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Jessie 8.0 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:e347e061-18b1-4519-bda4-1288d4f2f43a install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:912dfaf2-0ca3-44eb-bc65-e6fa7600bf67] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:79abf1d8-4b61-4fc3-aafa-58b0ccae48d3 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:c4ca0fad-2043-43c6-beb8-8b21e64e2fc4:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:c4ca0fad-2043-43c6-beb8-8b21e64e2fc4 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 8.1 (64-bit). name_label:Windows 8.1 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="25769803776" sr="" type="system"/></provision> import_task:OpaqueRef:736eeda6-e6ba-4284-bcce-64960351a010 install-methods:cdrom mac_seed:41f948e6-1e26-4903-bc2c-731950705ffa] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:2.5769803776e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:11c46476-bd5c-4d75-9cf0-57fe55343ba3 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:cd0e104a-6cc6-450f-93ec-d0106d6755cb:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:uefi order:cd] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:cd0e104a-6cc6-450f-93ec-d0106d6755cb installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2016 (64-bit). name_label:Windows Server 2016 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:b0042791-7880-40e2-add9-bd6edd5c9ac1 install-methods:cdrom mac_seed:f32740af-b870-4ad4-a5ea-dcb4a92b914a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:c15fab79-6cce-4e1f-916f-a64b98ff9e7d vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:cf262868-6222-4801-b32f-8f47a9e4d56d:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:cf262868-6222-4801-b32f-8f47a9e4d56d installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:NeoKylin Linux Server 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:121c0b01-09c4-4547-97c9-fc89f94be190 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:82496c88-2964-4b66-a93b-46044cf2ad34] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:7279a78a-4756-4fc3-99f0-3e7694c0319e vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:d97c4833-59d6-4ea2-80b1-d01281ba9665:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:d97c4833-59d6-4ea2-80b1-d01281ba9665 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:CentOS 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:cd256c85-ca6d-4985-96bf-8ac5d84cbbdf install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:54a35e53-c7b2-4742-bab2-ce7ec9215d87] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:11fd3dc9-96cc-49af-b091-a2ca7e94c589 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:dfa459b1-30de-453c-a3a9-2134b9dc7b65:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:dfa459b1-30de-453c-a3a9-2134b9dc7b65 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Ubuntu Xenial Xerus 16.04 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:bda54f4c-5f0f-4331-80f6-10cc80799975 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:2091b9d1-5adb-44f4-84aa-31aac35fa5df] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:e9763585-f70a-4526-bfcb-822064742e9f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:dff1569f-76ab-4a27-8219-11f47f5ea71c:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:dff1569f-76ab-4a27-8219-11f47f5ea71c installTime:<nil> memory:map[dynamic:[2.68435456e+08 2.68435456e+08] size:2.68435456e+08 static:[1.34217728e+08 2.68435456e+08]] name_description:Template which allows VM installation from install media name_label:Other install media os_version:<nil> other:map[default_template:true import_task:OpaqueRef:da35b53c-32a7-4ce5-9572-cdf98c147bb9 install-methods:cdrom mac_seed:7e7c7cf2-ff27-4f02-9125-7ba54a108690] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom]] type:VM-template uuid:552bce37-51b2-445d-84f2-5f33fa112d7e vga:cirrus videoram:4 virtualizationMode:hvm] OpaqueRef:e9b2df52-9571-44d9-bdba-784c14b3e84f:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:e9b2df52-9571-44d9-bdba-784c14b3e84f installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:CoreOS os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:4af19810-cc6d-4fb7-bfaf-3d01a6bc6d6b install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a43d8021-595e-4c53-8b4c-4e1c18e87831] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:094706dd-5d22-4830-99b7-c710769c9dcc vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:f4c4de5e-4e11-4d09-93c5-c57fa275afd4:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:f4c4de5e-4e11-4d09-93c5-c57fa275afd4 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:CentOS 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:9d984c41-a4ff-44a6-90af-85ffef21ee96 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:de380af2-9d27-4e22-b36e-8647eaeb52a4] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:4b6425be-728a-4a2c-8333-0aef209a348b vga:std videoram:8 virtualizationMode:hvm] b99aaaca-f50d-a8e2-25d4-a3f1adba8744:map[$VBDs:[f41a5254-3d7b-95f0-9bcb-92d12fab21bf 8fbf2ac4-84f4-c74c-b3f2-b822e5cbf0c6] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e7422074-978f-1dcc-605b-201bbbc23d87] addresses:map[0/ipv4/0:192.168.3.38 0/ipv6/0:fe80::58b7:79ff:fe4a:cd20] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:b99aaaca-f50d-a8e2-25d4-a3f1adba8744 installTime:<nil> mainIpAddress:192.168.3.38 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:0efa88da-c693-c9ed-927b-eb7f69d67c7a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:b99aaaca-f50d-a8e2-25d4-a3f1adba8744 vga:std videoram:8 virtualizationMode:hvm]]: result with error: <nil>
2021-12-16T10:35:36.802-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: 2021/12/16 10:35:36 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:SR]] and received map[02f2b444-e5fa-5054-15c5-91fc0b4e662e:map[$PBDs:[07b5373f-da70-da7d-2f03-996e849a8b66] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:iso VDIs:[d06793b4-8323-4ad2-b98d-2e06db63fc77 866d72fd-6f7a-409a-acb2-3c3df23fbd7d] content_type:iso current_operations:map[] id:02f2b444-e5fa-5054-15c5-91fc0b4e662e name_description:local iso repository name_label:local_ISO other_config:map[dirty:] physical_usage:1.1415793664e+10 shared:false size:1.88898304e+10 sm_config:map[] tags:[] type:SR usage:8.684617728e+09 uuid:02f2b444-e5fa-5054-15c5-91fc0b4e662e] 1fe736d0-2eef-4c5b-a5c7-5dcc18c697f3:map[$PBDs:[c7e711be-78fa-3afe-6da0-9ebd36b66654] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:iso VDIs:[6360ca61-f284-4107-9453-c1545061978d] content_type:iso current_operations:map[] id:1fe736d0-2eef-4c5b-a5c7-5dcc18c697f3 name_description:ISO name_label:ISO other_config:map[dirty:] physical_usage:1.1415793664e+10 shared:false size:1.88898304e+10 sm_config:map[] tags:[] type:SR usage:9.58398464e+08 uuid:1fe736d0-2eef-4c5b-a5c7-5dcc18c697f3] 54f5be2c-572c-cadd-5762-a678fd5521ad:map[$PBDs:[0aef93e0-edbd-cd89-b889-e8193e86fd4a] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:iso VDIs:[cc849e1b-68fd-4c3f-bc63-1c471b6199f6 b3474a0d-67e7-44fd-98a4-8f915f8895fb 2689ff6a-0822-4029-ab80-9010c74a13fb] content_type:iso current_operations:map[] id:54f5be2c-572c-cadd-5762-a678fd5521ad name_description:XCP-ng Tools ISOs name_label:XCP-ng Tools other_config:map[i18n-key:xenserver-tools i18n-original-value-name_description:XCP-ng Tools ISOs i18n-original-value-name_label:XCP-ng Tools xenserver_tools_sr:true xensource_internal:true] physical_usage:-1 shared:true size:-1 sm_config:map[] tags:[] type:SR usage:3.18976e+07 uuid:54f5be2c-572c-cadd-5762-a678fd5521ad] 8fd11492-f4b9-762c-1583-373ff9b305e9:map[$PBDs:[89467cd7-74f8-d34f-fa70-59ba3b081955] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:ext VDIs:[bfc7f0d8-d5d8-422f-8813-e7463cb37bae 01727cb3-7a30-4c93-8467-a2f4bf0d29e9 b1293477-0405-4731-bf31-fc77bffdf0ba d641fb91-320a-4191-8b29-7515188204e5 187af89e-8c2a-4e89-a243-403afd1e9f0d d7c8b62c-d4b9-4fc9-91a5-e140405b40ca 02f744b2-7e5e-45d8-8dd9-145b7dba0748 513ea4d9-3503-47de-9fd1-243a2ecb084b 2fe88c92-d8cb-4d4a-b910-52b56c329673 adda4916-253d-42f9-a351-15412759e9fd c5b1024f-c12b-4d7f-9537-bdfe5a2750e6 399dd15a-6160-4976-b3db-a390b29e35c6 a074b6a4-231d-477f-9ee4-55cdc9d21ca1 e09e5c0e-f3e7-4d54-8d51-3268f3f323e1 c7cf2a52-6330-46e3-9a90-f30196f4e944 54a5e6ab-c455-4c1b-9d6f-fa7e90011807 b157090e-dc08-4c65-a793-480b9fa3776c fc0f00f4-c612-47cf-b5d0-a4bb7496d7d3 2baa7ad9-4931-4b90-98fc-df652bb1db7d f52fec20-4c77-4812-b2d6-788d07dcf793 b28387ca-f21c-49ee-aa29-b6ae337008aa aef66c0e-831d-4b16-a749-956b427b1ac7 140c3e28-14b3-4c9c-be9a-44b22737b7c8 21d87ea0-220d-49ff-b658-b6d939afdc8c f42ac5b1-5590-4b72-b052-e91594d8bed8 e7d543c0-ceba-484f-bfdd-d2c32fa952c0 a779a8b0-279f-468e-8af1-bdbda44fe33c 97d80d0a-1d97-46e7-a470-bfaac2250ec6 9cd20875-8409-42ee-b62d-9021e757cd25 702381ee-9e7c-4da7-9a35-d6cb2500f619 051bc782-b3a3-481a-b251-f9076f1cbb7a 7206997e-fa6a-43c3-be7f-e5dbe02c6168 023d14c0-77c8-42f7-aa37-e0c261b93a98 54bd6bcd-d563-44b0-8ab5-b0923acc82b6 0c8f8922-e867-442b-9e78-7eeabe7ec0b3 3d377d97-9304-4850-98f1-b35ab41f13cc 7ea6302d-62bf-4023-9448-0b79446d19d6 b375c6f9-f6b3-4096-981a-87deaea1d035 629d7d02-380e-489e-99fa-ef51b71bd9aa c198e824-eb75-4e98-a7be-e260b9fc3dee c98fe6bc-5276-4a80-8357-8b2f45792b5d ed92ab53-859e-4013-8ff2-f29d58ce138d a71a8a28-a80f-4859-846e-b09bb4bdb862 2fbc3d5e-c5fd-49e5-afa7-5e2ffac08a32 adf8ec1b-b470-4283-a87b-1b4c9e4e821b 0d0b71bb-7d60-493d-bc2b-c9aa8f63c6b6 28ee64a9-42c7-45fc-b78a-52ecad7d438a dd76d2bb-9015-4988-ae1f-eea9387a96e5 0cf56e7c-6e9e-4b80-87fd-4faea6a53453 541541e8-76e8-4a76-bc87-5c1f9ae138d8 73d7db45-9ebc-4032-b8d6-5d0475c9f319 69c37de9-299a-4be1-94c2-b4a63201cafa 6eeae262-8c57-475a-be52-e735ab21e6c4 f55af4ea-0785-407c-add3-4d56cfd228da 088a8890-6d2c-429e-b4ab-821cd954e95e 4e8d9312-a4a4-4b5d-b274-b8bbf25d0ec1 79677852-2994-41b8-a726-1dda4d7d91aa 467d95f2-abd2-44c7-8008-38eb904170e6 ce0e90aa-9334-4733-b2e6-abe20daef7d6 efb02260-d48a-4dd8-92d1-03850bdfad27 4c989415-4f83-447c-b0cd-0e3298da6aa1 1f0c009c-97c9-4465-bcce-91d0ccf5204e 4fb4d8d6-48b5-46b9-8c70-851593638b8f bb23de90-6178-41a7-b430-74e1d4a7ba8d 02ef5fc3-c712-42ed-8774-a99921e184a1 d3d4369f-25f2-4ce5-9507-0c9b88cc7f9d 7cab82e1-6e26-4006-8f96-2ffb8a5ff578 b2469869-9886-4797-854c-b471181a6322 080bb12a-c628-4330-92e7-3fb5bcd08bbd e3c1970a-a5b0-4707-a4b6-f585260f4cbc acf1a24e-9b04-45dd-893b-c738aa273594 4bb0cb65-3a0c-449c-971a-94824c3f298a abeb0bd7-8577-4f97-9fa4-6042f7bb7dd1 fc9c23bc-52e0-4ed1-ae76-14f8a73a95ef d7016cdf-1b72-4b1d-871a-dc3b040ca038 533700e6-4b5c-4d1a-acb8-718adafb5c9b 79985475-9e95-4181-a380-e3dd11165fa5 39293dfe-edd8-47b6-b385-be826ee61cf1 f768357a-181d-4967-942a-b009d1a54a07 5229d3e7-9752-43ab-a6db-479e3e45a903 9934d52f-2aae-4b88-9136-deaa6454dba0 35d5bef5-6145-4749-891a-c04e8fc30c32 091e2dfb-a75f-4c24-be67-6a940dd8cf1b ac625d8b-1d7d-4953-86db-d467288f3b4e b4276ea5-c40c-4173-96d1-10d585685d0c 4ddc9474-bbd5-4af2-ab0a-cd65fb67ba82 04bc712c-4fd9-41bd-9820-22f362a8648b 27f8f5f5-4d8c-4fe7-a20c-1fc26ec38a80 555e09ef-ed7c-4da3-8d80-43b61966c884 521d0a86-95f5-4ffd-bfe9-a732026b018f 0cd29dc4-42ab-4b93-864b-2f26c2a1ea2d 9fa84f6a-dfae-4e01-a4bc-be9d045b050d 4ea2c365-2248-4e95-81ec-73da907c11f2 c66a8b5a-1644-441d-8793-0623c33a46e6 0e5ed83d-ae09-429b-803d-80eb89aefce6 642117f0-f3ff-4f18-bd18-9f9e75eb4a37 fddd8c78-14c2-4409-9cfc-fe83fd2821c5 b9c7ddf1-205b-4f88-89f0-c3d746f6bed7 e8dd7c9f-66c2-4853-872f-3b9bd945af15 0e1ccc21-cf34-4d3b-92c2-d8ee05d4e03d f2449759-29d1-40f5-9d58-480dbb0a333c 41374341-835b-46be-bb8e-777c8c93ba80 67f8e971-853e-4871-96f4-a8e9e609171f 9f1e319c-5dda-4bf6-af33-68ff100aa196 3fc91d7d-3665-4d22-bc71-bf663b07e440 3016277e-1216-4878-b666-0a6ae987fda6 a26e109a-a6c5-4ed4-9e9d-b9cb5c5be6cc fde7bfd5-895c-4bb9-871d-4dbb83252f20 fee9af7f-6dd8-4d90-a1ee-3a562af5a87c f7224c69-79ac-406d-889f-099496b59abc 254b2c85-57b1-4d57-a606-08bf069274f8 cba4132e-b200-43f2-9350-433fa9a97002 d16e4e03-ef78-473d-9ebb-e1844fdd4be6 c3982c71-95c8-4763-bde0-b3c624a03911 f0071cd5-a3a2-4354-aa98-91e9dd0bb7c0 ef86654f-0396-4096-9f9a-8bf2edacf800 6f021ecb-f67e-40bd-86b5-83bef6dea3fd 4d7035f0-cd56-47dc-a8f1-d2af7daf25b5 98919cb5-c627-4cb3-8adf-d1bb0f9f30a0 e732eb8d-5694-4dfb-901f-d65636e1c04b 56a79535-0d35-471d-a440-3fd9e5b8d4ef f0ece6e9-8c21-4d85-8b41-855d4bf98c03 dfd53e7e-a761-42e3-86c6-758d36c51c05 bc616a81-0314-4d2a-b36b-1108a336a730] allocationStrategy:thin content_type:user current_operations:map[] id:8fd11492-f4b9-762c-1583-373ff9b305e9 name_description: name_label:Local storage other_config:map[i18n-key:local-storage i18n-original-value-name_label:Local storage] physical_usage:3.20748068864e+11 shared:false size:9.4049716224e+11 sm_config:map[devserial:scsi-35000039ffbc95d5b] tags:[] type:SR usage:3.19891177472e+12 uuid:8fd11492-f4b9-762c-1583-373ff9b305e9] c3446657-b59a-20e8-717e-e8702976ca0b:map[$PBDs:[2b3dfbe2-60b4-3fb9-dfae-7077a41c3bfb] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:udev VDIs:[67335f20-9824-4d0e-8e43-9fe0a1c262d6] allocationStrategy:thick content_type:iso current_operations:map[] id:c3446657-b59a-20e8-717e-e8702976ca0b name_description:Physical DVD drives name_label:DVD drives other_config:map[i18n-key:local-hotplug-cd i18n-original-value-name_description:Physical DVD drives i18n-original-value-name_label:DVD drives] physical_usage:1.073741312e+09 shared:false size:1.073741312e+09 sm_config:map[type:cd] tags:[] type:SR usage:1.073741312e+09 uuid:c3446657-b59a-20e8-717e-e8702976ca0b] f103121d-7c25-73b1-7a7a-721634270eca:map[$PBDs:[9db680f4-cda7-d66e-5efd-52eab380cb85] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:udev VDIs:[] allocationStrategy:thick content_type:disk current_operations:map[] id:f103121d-7c25-73b1-7a7a-721634270eca name_description: name_label:Removable storage other_config:map[i18n-key:local-hotplug-disk i18n-original-value-name_label:Removable storage] physical_usage:0 shared:false size:0 sm_config:map[type:block] tags:[] type:SR usage:0 uuid:f103121d-7c25-73b1-7a7a-721634270eca]]: result with error: <nil>
2021-12-16T10:35:36.803-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: 2021/12/16 10:35:36 [DEBUG] Found the following objects for type 'client.StorageRepository' from xo.getAllObjects: [{Id:8fd11492-f4b9-762c-1583-373ff9b305e9 Uuid:8fd11492-f4b9-762c-1583-373ff9b305e9 NameLabel:Local storage PoolId:f212dec4-4682-6045-6dae-1fe80229e66f SRType:ext Tags:[]}]
2021-12-16T10:35:36.803-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: 2021/12/16 10:35:36 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:network]] and received map[06e1ffdc-30e9-66f7-f265-992376416c35:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f af630cc2-f952-c4c6-5649-1085e965a1f0 fdf4167c-1793-1659-7392-015c0c46fd34 94e97171-451f-db1f-05e1-e11c2d883796 b1f00623-3632-593e-b4b4-0ee8e18819d9 4bf96f83-86b5-6424-08ae-b5d7bb26f9e0 766d7214-3e35-110e-b178-2820b0f98009 20ca4718-febf-6dea-66c0-4351ff10dd0d 3e92b66b-8237-72fd-6c80-4fff3eeb5c3e 309a26f4-b1a7-95eb-7038-690acde42a23 38b9bdcf-ccf5-1ba4-fe8e-0d3b24ba3c7f bd6d8458-18e6-2f52-9b7b-b38e5ab85a94 3a79aa50-091b-f73c-b1d5-d8ac69eb7fea b4c23d16-2de9-b905-7e6e-9f35a334a436 0a79cc56-710d-78db-7bf3-9ea445859ad6 20c05b46-b642-a943-5dbe-2edf0899de25 e7422074-978f-1dcc-605b-201bbbc23d87 53f7d501-2ce5-be27-8d7f-bbfd97812a67 e67e0231-c53b-433e-42cf-5ba8a612ccb8 d0aa3ccc-778c-9029-088e-57eb67aab283 62c06394-7e7c-9614-fb23-c355d7b2cc70 33a76369-6931-e712-09cc-dd075a85bc57 9c544ecf-19a3-cdf9-2cec-40cd41184f69 c50d647d-2b3e-6b55-2bb4-3f610efbe6e5 8bac934f-2210-2d8d-8d59-b10039cd6bd1 59fbb72a-a54a-9b89-3d4f-78dfafe61401 88261157-b603-6e39-dbc3-4e745e6a8753 c4fe9375-84d3-e84f-ec70-f3da1672ef55 88a8f60c-f1b5-de2a-2a34-dfe973bc1fde] automatic:false bridge:xapi10 current_operations:map[] defaultIsLocked:false id:06e1ffdc-30e9-66f7-f265-992376416c35 name_description: name_label:Internal other_config:map[] tags:[] type:network uuid:06e1ffdc-30e9-66f7-f265-992376416c35] 0a05af13-c73d-1f04-3203-e8d57472644e:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[ed660075-2bb5-8d6e-0d72-a50f06c120c9] VIFs:[e2f92181-06af-5bd9-1690-df238e58227c fdd690e2-08b1-2b74-1a9b-34a91ad476ac] automatic:false bridge:xenbr3 current_operations:map[] defaultIsLocked:true id:0a05af13-c73d-1f04-3203-e8d57472644e name_description: name_label:Pool-wide network associated with eth3 other_config:map[] tags:[] type:network uuid:0a05af13-c73d-1f04-3203-e8d57472644e] 1cda7012-c933-97da-50e4-b2076df79cd3:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[c6ef242c-1109-9195-41a5-93b2cc6ba290] VIFs:[f3594756-763c-6ad0-6c0b-7fd61f210ee0 f3a5119a-522e-484e-7e01-63abaf3c982a] automatic:false bridge:xenbr4 current_operations:map[] defaultIsLocked:true id:1cda7012-c933-97da-50e4-b2076df79cd3 name_description: name_label:Pool-wide network associated with eth4 other_config:map[] tags:[] type:network uuid:1cda7012-c933-97da-50e4-b2076df79cd3] 20deed75-8521-1b2c-09be-86fe0d2b9a51:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[] VIFs:[] automatic:false bridge:xenapi current_operations:map[] defaultIsLocked:false id:20deed75-8521-1b2c-09be-86fe0d2b9a51 name_description:Network on which guests will be assigned a private link-local IP address which can be used to talk XenAPI name_label:Host internal management network other_config:map[ip_begin:169.254.0.1 ip_end:169.254.255.254 is_guest_installer_network:true is_host_internal_management_network:true netmask:255.255.0.0] tags:[] type:network uuid:20deed75-8521-1b2c-09be-86fe0d2b9a51] 53276ad6-08e2-fef6-0848-ee5bb3c22932:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[d7b6921d-1b75-6a64-3f9b-f187455252eb] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a 01112f13-5aaf-679d-ce82-4c34f6a5dc27] automatic:false bridge:xenbr2 current_operations:map[] defaultIsLocked:true id:53276ad6-08e2-fef6-0848-ee5bb3c22932 name_description: name_label:Pool-wide network associated with eth2 other_config:map[] tags:[] type:network uuid:53276ad6-08e2-fef6-0848-ee5bb3c22932] 75213c53-566b-4927-bc83-743587e0f676:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[] VIFs:[85994cd2-c8b6-56c1-37a6-b0edf51312fd 996d7fa5-42fe-37fb-81e6-ac9dd3fece17] automatic:true bridge:xapi0 current_operations:map[] defaultIsLocked:false id:75213c53-566b-4927-bc83-743587e0f676 name_description:Internal LAN network name_label:Private LAN other_config:map[automatic:true import_task:OpaqueRef:e915ab7a-9d8b-44d1-be44-d35c3656c973] tags:[] type:network uuid:75213c53-566b-4927-bc83-743587e0f676] 8fd6e758-09e7-0a38-f97a-fb3dcfc437ce:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[9b4fa79b-1556-961c-b1b5-58f6d77cf3c4] VIFs:[48880504-edb5-b6cb-b78f-a0561720196c 26fad0d5-95e8-3a78-3cab-56902d939881 d30f0084-ae9d-c8a4-5429-57ebddca6de4 b2fb8066-358b-1b1f-c3d9-9a1ab38337d7 fbf22caa-8d78-27fa-83eb-5be309345d12 0b555054-a07f-dcc5-2f99-be4f8826f469 9b33db6e-2e7f-e269-9990-23c9f09086ab 45c6eefa-e6cd-7115-1aba-33857411c358 6f45f4ba-cd2b-128d-5e02-46f9121c1c90 3b619aec-6099-c97f-3aff-10630559202e 5fdc7f97-f2ab-5dad-38e1-59a67540a468 ed720b6d-8da3-f702-e7d6-7eda32c02984 d2931041-f4cf-8117-bd02-1beb6d7a71a6 9c4dbfcd-ccf5-4bac-5dfd-dc6a185a7554] automatic:false bridge:xenbr0 current_operations:map[] defaultIsLocked:false id:8fd6e758-09e7-0a38-f97a-fb3dcfc437ce name_description: name_label:Pool-wide network associated with eth0 other_config:map[] tags:[] type:network uuid:8fd6e758-09e7-0a38-f97a-fb3dcfc437ce] e9d7a373-f6c7-f9c2-6ef6-44966587f09f:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[857223c3-133c-c5f8-40af-6c5328b8200f] VIFs:[bae03704-fc2c-d0a9-b300-8cae1b77a858 d098275e-ddf4-aea3-48ec-0674942abf17 5ae724a1-7807-a6ca-838d-7c97f077a00d 2c70c5c5-5d71-df12-42c3-9bf94713aaa0] automatic:true bridge:xenbr1 current_operations:map[] defaultIsLocked:true id:e9d7a373-f6c7-f9c2-6ef6-44966587f09f name_description: name_label:Pool-wide network associated with eth1 other_config:map[automatic:true] tags:[] type:network uuid:e9d7a373-f6c7-f9c2-6ef6-44966587f09f]]: result with error: <nil>
2021-12-16T10:35:36.803-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: 2021/12/16 10:35:36 [DEBUG] Found the following objects for type 'client.Network' from xo.getAllObjects: [{Id:06e1ffdc-30e9-66f7-f265-992376416c35 NameLabel:Internal Bridge:xapi10 PoolId:f212dec4-4682-6045-6dae-1fe80229e66f}]
2021-12-16T10:35:36.804-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.17.0: 2021/12/16 10:35:36 [DEBUG] Found the following objects for type 'client.Template' from xo.getAllObjects: [{Id:6f73645b-80bf-54d5-82a9-72d83b84cba2 Uuid:6f73645b-80bf-54d5-82a9-72d83b84cba2 NameLabel:AMI PoolId:f212dec4-4682-6045-6dae-1fe80229e66f TemplateInfo:{Arch: Disks:[]}}]
2021-12-16T10:35:36.805-0500 [DEBUG] Resource instance state not found for node "xenorchestra_vm.vm", instance xenorchestra_vm.vm
2021-12-16T10:35:36.805-0500 [DEBUG] ReferenceTransformer: "xenorchestra_vm.vm" references: []
2021-12-16T10:35:36.805-0500 [DEBUG] refresh: xenorchestra_vm.vm: no state, so not refreshing
2021-12-16T10:35:36.808-0500 [WARN]  Provider "registry.terraform.io/terra-farm/xenorchestra" produced an invalid plan for xenorchestra_vm.vm, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .cpu_weight: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .core_os: planned value cty.False for a non-computed attribute
      - .cpu_cap: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .disk[0].attached: planned value cty.True for a non-computed attribute
      - .network[0].attached: planned value cty.True for a non-computed attribute
2021-12-16T10:35:36.810-0500 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-12-16T10:35:36.811-0500 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.17.0/linux_amd64/terraform-provider-xenorchestra_v0.17.0 pid=51190
2021-12-16T10:35:36.811-0500 [DEBUG] provider: plugin exited
2021-12-16T10:35:36.811-0500 [INFO]  backend/local: plan operation completed

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # xenorchestra_vm.vm will be created
  + resource "xenorchestra_vm" "vm" {
      + auto_poweron   = true
      + core_os        = false
      + cpu_cap        = 0
      + cpu_weight     = 0
      + cpus           = 2
      + id             = (known after apply)
      + ipv4_addresses = (known after apply)
      + ipv6_addresses = (known after apply)
      + memory_max     = 2147484000
      + name_label     = "Test"
      + template       = "6f73645b-80bf-54d5-82a9-72d83b84cba2"
      + wait_for_ip    = true

      + disk {
          + attached   = true
          + name_label = "VM root volume"
          + position   = (known after apply)
          + size       = 53687090000
          + sr_id      = "8fd11492-f4b9-762c-1583-373ff9b305e9"
          + vbd_id     = (known after apply)
          + vdi_id     = (known after apply)
        }

      + network {
          + attached       = true
          + device         = (known after apply)
          + ipv4_addresses = (known after apply)
          + ipv6_addresses = (known after apply)
          + mac_address    = (known after apply)
          + network_id     = "06e1ffdc-30e9-66f7-f265-992376416c35"
        }
    }

Plan: 1 to add, 0 to change, 0 to destroy.

Changes to Outputs:
  + all-ipv4ips-for-vm = (known after apply)
newknowledg commented 2 years ago

Terraform timedout. This only occured when generating the log. Here is the output:

TF_LOG=debug terraform apply
2021-12-16T11:11:10.438-0500 [INFO]  Terraform version: 1.1.1
2021-12-16T11:11:10.439-0500 [INFO]  Go runtime version: go1.17.2
2021-12-16T11:11:10.439-0500 [INFO]  CLI args: []string{"terraform", "apply"}
2021-12-16T11:11:10.439-0500 [DEBUG] Attempting to open CLI config file: /home/boss/.terraformrc
2021-12-16T11:11:10.439-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2021-12-16T11:11:10.439-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2021-12-16T11:11:10.439-0500 [DEBUG] ignoring non-existing provider search directory /home/boss/.terraform.d/plugins
2021-12-16T11:11:10.440-0500 [DEBUG] ignoring non-existing provider search directory /home/boss/.local/share/terraform/plugins
2021-12-16T11:11:10.440-0500 [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins
2021-12-16T11:11:10.440-0500 [DEBUG] ignoring non-existing provider search directory /usr/share/terraform/plugins
2021-12-16T11:11:10.440-0500 [INFO]  CLI command args: []string{"apply"}
2021-12-16T11:11:10.441-0500 [DEBUG] New state was assigned lineage "fb14b2d1-e993-2472-13e6-9ba0b18bcf23"
2021-12-16T11:11:10.555-0500 [DEBUG] checking for provisioner in "."
2021-12-16T11:11:10.558-0500 [DEBUG] checking for provisioner in "/usr/bin"
2021-12-16T11:11:10.559-0500 [INFO]  backend/local: starting Apply operation
2021-12-16T11:11:10.560-0500 [DEBUG] created provider logger: level=debug
2021-12-16T11:11:10.560-0500 [INFO]  provider: configuring client automatic mTLS
2021-12-16T11:11:10.572-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 args=[.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0]
2021-12-16T11:11:10.573-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 pid=62577
2021-12-16T11:11:10.573-0500 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0
2021-12-16T11:11:10.581-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: configuring server automatic mTLS: timestamp=2021-12-16T11:11:10.581-0500
2021-12-16T11:11:10.631-0500 [DEBUG] provider: using plugin: version=5
2021-12-16T11:11:10.631-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.22.0: plugin address: address=/tmp/plugin544942812 network=unix timestamp=2021-12-16T11:11:10.631-0500
2021-12-16T11:11:10.676-0500 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-12-16T11:11:10.677-0500 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 pid=62577
2021-12-16T11:11:10.677-0500 [DEBUG] provider: plugin exited
2021-12-16T11:11:10.677-0500 [DEBUG] Building and walking validate graph
2021-12-16T11:11:10.678-0500 [DEBUG] ProviderTransformer: "xenorchestra_vm.vm" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.678-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_pool.pool" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.678-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_template.vm_template" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.678-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_sr.sr" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.678-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_network.network" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.679-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_template.vm_template" references: []
2021-12-16T11:11:10.679-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_sr.sr" references: [data.xenorchestra_pool.pool]
2021-12-16T11:11:10.679-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_network.network" references: [data.xenorchestra_pool.pool]
2021-12-16T11:11:10.680-0500 [DEBUG] ReferenceTransformer: "output.all-ipv4-ips-for-vm" references: [xenorchestra_vm.vm]
2021-12-16T11:11:10.680-0500 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/terra-farm/xenorchestra\"]" references: []
2021-12-16T11:11:10.680-0500 [DEBUG] ReferenceTransformer: "xenorchestra_vm.vm" references: [data.xenorchestra_template.vm_template data.xenorchestra_network.network data.xenorchestra_sr.sr]
2021-12-16T11:11:10.680-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_pool.pool" references: []
2021-12-16T11:11:10.681-0500 [DEBUG] Starting graph walk: walkValidate
2021-12-16T11:11:10.682-0500 [DEBUG] created provider logger: level=debug
2021-12-16T11:11:10.682-0500 [INFO]  provider: configuring client automatic mTLS
2021-12-16T11:11:10.694-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 args=[.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0]
2021-12-16T11:11:10.695-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 pid=62587
2021-12-16T11:11:10.695-0500 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0
2021-12-16T11:11:10.705-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: configuring server automatic mTLS: timestamp=2021-12-16T11:11:10.704-0500
2021-12-16T11:11:10.764-0500 [DEBUG] provider: using plugin: version=5
2021-12-16T11:11:10.764-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.22.0: plugin address: network=unix address=/tmp/plugin501567763 timestamp=2021-12-16T11:11:10.764-0500
2021-12-16T11:11:10.814-0500 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-12-16T11:11:10.816-0500 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 pid=62587
2021-12-16T11:11:10.816-0500 [DEBUG] provider: plugin exited
2021-12-16T11:11:10.816-0500 [INFO]  backend/local: apply calling Plan
2021-12-16T11:11:10.816-0500 [DEBUG] Building and walking plan graph for NormalMode
2021-12-16T11:11:10.816-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_network.network (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.816-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_pool.pool (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.816-0500 [DEBUG] ProviderTransformer: "xenorchestra_vm.vm (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.816-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_template.vm_template (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.816-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_sr.sr (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:10.817-0500 [DEBUG] ReferenceTransformer: "xenorchestra_vm.vm (expand)" references: [data.xenorchestra_template.vm_template (expand) data.xenorchestra_network.network (expand) data.xenorchestra_sr.sr (expand)]
2021-12-16T11:11:10.817-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_template.vm_template (expand)" references: []
2021-12-16T11:11:10.817-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_sr.sr (expand)" references: [data.xenorchestra_pool.pool (expand)]
2021-12-16T11:11:10.817-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_network.network (expand)" references: [data.xenorchestra_pool.pool (expand)]
2021-12-16T11:11:10.817-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_pool.pool (expand)" references: []
2021-12-16T11:11:10.817-0500 [DEBUG] ReferenceTransformer: "output.all-ipv4-ips-for-vm" references: [xenorchestra_vm.vm (expand)]
2021-12-16T11:11:10.817-0500 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/terra-farm/xenorchestra\"]" references: []
2021-12-16T11:11:10.817-0500 [DEBUG] Starting graph walk: walkPlan
2021-12-16T11:11:10.818-0500 [DEBUG] created provider logger: level=debug
2021-12-16T11:11:10.818-0500 [INFO]  provider: configuring client automatic mTLS
2021-12-16T11:11:10.831-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 args=[.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0]
2021-12-16T11:11:10.831-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 pid=62597
2021-12-16T11:11:10.831-0500 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0
2021-12-16T11:11:10.841-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: configuring server automatic mTLS: timestamp=2021-12-16T11:11:10.841-0500
2021-12-16T11:11:10.886-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.22.0: plugin address: address=/tmp/plugin283575237 network=unix timestamp=2021-12-16T11:11:10.886-0500
2021-12-16T11:11:10.886-0500 [DEBUG] provider: using plugin: version=5
2021-12-16T11:11:10.928-0500 [WARN]  ValidateProviderConfig from "provider[\"registry.terraform.io/terra-farm/xenorchestra\"]" changed the config value, but that value is unused
2021-12-16T11:11:10.946-0500 [DEBUG] Resource instance state not found for node "data.xenorchestra_template.vm_template", instance data.xenorchestra_template.vm_template
2021-12-16T11:11:10.946-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_template.vm_template" references: []
2021-12-16T11:11:10.946-0500 [DEBUG] Resource instance state not found for node "data.xenorchestra_pool.pool", instance data.xenorchestra_pool.pool
2021-12-16T11:11:10.946-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_pool.pool" references: []
2021-12-16T11:11:10.956-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:pool]] and received map[f212dec4-4682-6045-6dae-1fe80229e66f:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f HA_enabled:false cpus:map[cores:16 sockets:1] current_operations:map[] default_SR:8fd11492-f4b9-762c-1583-373ff9b305e9 id:f212dec4-4682-6045-6dae-1fe80229e66f master:b2fae86d-40b5-433b-8fd2-09444f2e06d2 name_description: name_label:xcp-ng-Homelab otherConfig:map[auto_poweron:true memory-ratio-hvm:0.25 memory-ratio-pv:0.25] tags:[] type:pool uuid:f212dec4-4682-6045-6dae-1fe80229e66f xosanPackInstallationTime:<nil> zstdSupported:true]]: result with error: <nil>: timestamp=2021-12-16T11:11:10.956-0500
2021-12-16T11:11:10.956-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [DEBUG] Found the following objects for type 'client.Pool' from xo.getAllObjects: [{Id:f212dec4-4682-6045-6dae-1fe80229e66f NameLabel:xcp-ng-Homelab Description: Cpus:{Cores:16 Sockets:1} DefaultSR:8fd11492-f4b9-762c-1583-373ff9b305e9 Master:b2fae86d-40b5-433b-8fd2-09444f2e06d2}]: timestamp=2021-12-16T11:11:10.956-0500
2021-12-16T11:11:10.956-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [DEBUG] Found pool with {Id:f212dec4-4682-6045-6dae-1fe80229e66f NameLabel:xcp-ng-Homelab Description: Cpus:{Cores:16 Sockets:1} DefaultSR:8fd11492-f4b9-762c-1583-373ff9b305e9 Master:b2fae86d-40b5-433b-8fd2-09444f2e06d2}: timestamp=2021-12-16T11:11:10.956-0500
2021-12-16T11:11:10.957-0500 [DEBUG] Resource instance state not found for node "data.xenorchestra_sr.sr", instance data.xenorchestra_sr.sr
2021-12-16T11:11:10.957-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_sr.sr" references: []
2021-12-16T11:11:10.957-0500 [DEBUG] Resource instance state not found for node "data.xenorchestra_network.network", instance data.xenorchestra_network.network
2021-12-16T11:11:10.957-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_network.network" references: []
2021-12-16T11:11:10.966-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:network]] and received map[06e1ffdc-30e9-66f7-f265-992376416c35:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f af630cc2-f952-c4c6-5649-1085e965a1f0 fdf4167c-1793-1659-7392-015c0c46fd34 94e97171-451f-db1f-05e1-e11c2d883796 b1f00623-3632-593e-b4b4-0ee8e18819d9 4bf96f83-86b5-6424-08ae-b5d7bb26f9e0 766d7214-3e35-110e-b178-2820b0f98009 3e92b66b-8237-72fd-6c80-4fff3eeb5c3e 309a26f4-b1a7-95eb-7038-690acde42a23 38b9bdcf-ccf5-1ba4-fe8e-0d3b24ba3c7f bd6d8458-18e6-2f52-9b7b-b38e5ab85a94 3a79aa50-091b-f73c-b1d5-d8ac69eb7fea b4c23d16-2de9-b905-7e6e-9f35a334a436 0a79cc56-710d-78db-7bf3-9ea445859ad6 20c05b46-b642-a943-5dbe-2edf0899de25 e7422074-978f-1dcc-605b-201bbbc23d87 53f7d501-2ce5-be27-8d7f-bbfd97812a67 e67e0231-c53b-433e-42cf-5ba8a612ccb8 62c06394-7e7c-9614-fb23-c355d7b2cc70 33a76369-6931-e712-09cc-dd075a85bc57 9c544ecf-19a3-cdf9-2cec-40cd41184f69 c50d647d-2b3e-6b55-2bb4-3f610efbe6e5 59fbb72a-a54a-9b89-3d4f-78dfafe61401 88261157-b603-6e39-dbc3-4e745e6a8753 c4fe9375-84d3-e84f-ec70-f3da1672ef55 88a8f60c-f1b5-de2a-2a34-dfe973bc1fde] automatic:false bridge:xapi10 current_operations:map[] defaultIsLocked:false id:06e1ffdc-30e9-66f7-f265-992376416c35 name_description: name_label:Internal other_config:map[] tags:[] type:network uuid:06e1ffdc-30e9-66f7-f265-992376416c35] 0a05af13-c73d-1f04-3203-e8d57472644e:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[ed660075-2bb5-8d6e-0d72-a50f06c120c9] VIFs:[e2f92181-06af-5bd9-1690-df238e58227c fdd690e2-08b1-2b74-1a9b-34a91ad476ac] automatic:false bridge:xenbr3 current_operations:map[] defaultIsLocked:true id:0a05af13-c73d-1f04-3203-e8d57472644e name_description: name_label:Pool-wide network associated with eth3 other_config:map[] tags:[] type:network uuid:0a05af13-c73d-1f04-3203-e8d57472644e] 1cda7012-c933-97da-50e4-b2076df79cd3:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[c6ef242c-1109-9195-41a5-93b2cc6ba290] VIFs:[f3594756-763c-6ad0-6c0b-7fd61f210ee0 f3a5119a-522e-484e-7e01-63abaf3c982a] automatic:false bridge:xenbr4 current_operations:map[] defaultIsLocked:true id:1cda7012-c933-97da-50e4-b2076df79cd3 name_description: name_label:Pool-wide network associated with eth4 other_config:map[] tags:[] type:network uuid:1cda7012-c933-97da-50e4-b2076df79cd3] 20deed75-8521-1b2c-09be-86fe0d2b9a51:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[] VIFs:[] automatic:false bridge:xenapi current_operations:map[] defaultIsLocked:false id:20deed75-8521-1b2c-09be-86fe0d2b9a51 name_description:Network on which guests will be assigned a private link-local IP address which can be used to talk XenAPI name_label:Host internal management network other_config:map[ip_begin:169.254.0.1 ip_end:169.254.255.254 is_guest_installer_network:true is_host_internal_management_network:true netmask:255.255.0.0] tags:[] type:network uuid:20deed75-8521-1b2c-09be-86fe0d2b9a51] 53276ad6-08e2-fef6-0848-ee5bb3c22932:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[d7b6921d-1b75-6a64-3f9b-f187455252eb] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a 01112f13-5aaf-679d-ce82-4c34f6a5dc27] automatic:false bridge:xenbr2 current_operations:map[] defaultIsLocked:true id:53276ad6-08e2-fef6-0848-ee5bb3c22932 name_description: name_label:Pool-wide network associated with eth2 other_config:map[] tags:[] type:network uuid:53276ad6-08e2-fef6-0848-ee5bb3c22932] 75213c53-566b-4927-bc83-743587e0f676:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[] VIFs:[85994cd2-c8b6-56c1-37a6-b0edf51312fd 996d7fa5-42fe-37fb-81e6-ac9dd3fece17] automatic:true bridge:xapi0 current_operations:map[] defaultIsLocked:false id:75213c53-566b-4927-bc83-743587e0f676 name_description:Internal LAN network name_label:Private LAN other_config:map[automatic:true import_task:OpaqueRef:e915ab7a-9d8b-44d1-be44-d35c3656c973] tags:[] type:network uuid:75213c53-566b-4927-bc83-743587e0f676] 8fd6e758-09e7-0a38-f97a-fb3dcfc437ce:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[9b4fa79b-1556-961c-b1b5-58f6d77cf3c4] VIFs:[48880504-edb5-b6cb-b78f-a0561720196c 26fad0d5-95e8-3a78-3cab-56902d939881 d30f0084-ae9d-c8a4-5429-57ebddca6de4 b2fb8066-358b-1b1f-c3d9-9a1ab38337d7 fbf22caa-8d78-27fa-83eb-5be309345d12 0b555054-a07f-dcc5-2f99-be4f8826f469 9b33db6e-2e7f-e269-9990-23c9f09086ab 45c6eefa-e6cd-7115-1aba-33857411c358 6f45f4ba-cd2b-128d-5e02-46f9121c1c90 3b619aec-6099-c97f-3aff-10630559202e 5fdc7f97-f2ab-5dad-38e1-59a67540a468 ed720b6d-8da3-f702-e7d6-7eda32c02984 d2931041-f4cf-8117-bd02-1beb6d7a71a6 9c4dbfcd-ccf5-4bac-5dfd-dc6a185a7554] automatic:false bridge:xenbr0 current_operations:map[] defaultIsLocked:false id:8fd6e758-09e7-0a38-f97a-fb3dcfc437ce name_description: name_label:Pool-wide network associated with eth0 other_config:map[] tags:[] type:network uuid:8fd6e758-09e7-0a38-f97a-fb3dcfc437ce] e9d7a373-f6c7-f9c2-6ef6-44966587f09f:map[$pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f MTU:1500 PIFs:[857223c3-133c-c5f8-40af-6c5328b8200f] VIFs:[bae03704-fc2c-d0a9-b300-8cae1b77a858 d098275e-ddf4-aea3-48ec-0674942abf17 5ae724a1-7807-a6ca-838d-7c97f077a00d 2c70c5c5-5d71-df12-42c3-9bf94713aaa0] automatic:true bridge:xenbr1 current_operations:map[] defaultIsLocked:true id:e9d7a373-f6c7-f9c2-6ef6-44966587f09f name_description: name_label:Pool-wide network associated with eth1 other_config:map[automatic:true] tags:[] type:network uuid:e9d7a373-f6c7-f9c2-6ef6-44966587f09f]]: result with error: <nil>: timestamp=2021-12-16T11:11:10.966-0500
2021-12-16T11:11:10.967-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [DEBUG] Found the following objects for type 'client.Network' from xo.getAllObjects: [{Id:06e1ffdc-30e9-66f7-f265-992376416c35 NameLabel:Internal Bridge:xapi10 PoolId:f212dec4-4682-6045-6dae-1fe80229e66f}]: timestamp=2021-12-16T11:11:10.967-0500
2021-12-16T11:11:10.968-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM-template]] and received map[0c356be3-6325-177b-6e48-0498470a81b3:map[$VBDs:[a511e595-bac6-4682-b7c4-d8a94937daf1] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[45c6eefa-e6cd-7115-1aba-33857411c358] addresses:map[0/ipv4/0:192.168.0.36 0/ipv6/0:fd00:ac20:2ebf:2572:70f8:acff:fe17:c26f 0/ipv6/1:2607:fea8:4fc0:56:70f8:acff:fe17:c26f 0/ipv6/2:fe80::70f8:acff:fe17:c26f] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:1 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0c356be3-6325-177b-6e48-0498470a81b3 installTime:<nil> mainIpAddress:192.168.0.36 memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.442450944e+09 static:[5.36870912e+08 6.442450944e+09]] name_description:template name_label:Matrix os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-9-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:65808867-2d70-3fc4-8f3a-d0d414fd2d62] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:0c356be3-6325-177b-6e48-0498470a81b3 vga:std videoram:8 virtualizationMode:hvm] 47b104d0-69b3-08e2-4108-bebefdadcac0:map[$VBDs:[594d489a-6db9-dda9-0dee-a6e5637dedbd bb3e3e27-d313-325e-8e1f-d0ef303133cb] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[c4fe9375-84d3-e84f-ec70-f3da1672ef55] addresses:map[0/ipv4/0:192.168.3.37 0/ipv6/0:fe80::78bd:658a:cb:6c4c] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:47b104d0-69b3-08e2-4108-bebefdadcac0 installTime:<nil> mainIpAddress:192.168.3.37 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.147483648e+09 4.294967296e+09]] name_description: name_label:CentOS _clone os_version:map[distro:centos major:7 minor:9 name:CentOS Linux release 7.9.2009 (Core) uname:3.10.0-1160.el7.x86_64] other:map[base_template_name:CentOS 7 import_task:OpaqueRef:b1cc289c-1201-49ec-9c68-56fb963c641c install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ec0dcea1-0396-3457-dcfc-525946c893e8] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:47b104d0-69b3-08e2-4108-bebefdadcac0 vga:std videoram:8 virtualizationMode:hvm] 656c51b8-9aee-0ee5-5152-c47986673e44:map[$VBDs:[72268e59-f8a1-bbd6-36da-3d0a537ee635 7edf44ac-f223-dd2c-f9f2-e941c4c2c3fc] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[85994cd2-c8b6-56c1-37a6-b0edf51312fd] addresses:map[0/ipv4/0:192.168.5.25 0/ipv6/0:fe80::b4f3:d9ff:fe46:2bb4] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] cpuCap:<nil> current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:656c51b8-9aee-0ee5-5152-c47986673e44 installTime:<nil> mainIpAddress:192.168.5.25 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Debian 10 Cloudinit ready template from XO Hub name_label:Debian 10 Cloudinit os_version:map[distro:debian major:10 minor:1 name:Debian 10.1 uname:4.19.0-6-amd64] other:map[base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:e915ab7a-9d8b-44d1-be44-d35c3656c973 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a5f442c2-f2ee-0ce6-08da-7f8b5d21b7dd xo:resource:namespace:Debian10 xo:resource:xva:id:a677aa91-f5d5-46ec-bd53-956b73fc7871 xo:resource:xva:version:1.0.0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:656c51b8-9aee-0ee5-5152-c47986673e44 vga:cirrus videoram:8 virtualizationMode:hvm] 6f73645b-80bf-54d5-82a9-72d83b84cba2:map[$VBDs:[cc91904a-117a-6190-9d31-dfbea5be95f9 61986d31-7a83-7996-d2ba-053be34b7c78] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[4bf96f83-86b5-6424-08ae-b5d7bb26f9e0] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:6f73645b-80bf-54d5-82a9-72d83b84cba2 installTime:<nil> mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:AMI os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:85e0cf48-933b-dc5c-6fd0-9f59b12ea1e5] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:6f73645b-80bf-54d5-82a9-72d83b84cba2 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:1097d702-a088-4f27-a48f-34d956decee2:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:uefi order:cd] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:1097d702-a088-4f27-a48f-34d956decee2 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2019 (64-bit). name_label:Windows Server 2019 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:4a9f6fcb-2a7f-4720-99c4-159aa86b7890 install-methods:cdrom mac_seed:83cad216-0249-48c9-b6f0-35c6e622cbfe] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:d986ea98-09fa-4e9a-9ee6-e6c78119496f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:16fdfde2-8749-4dfe-8907-5d7b22f89b74:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:16fdfde2-8749-4dfe-8907-5d7b22f89b74 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Scientific Linux 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:605d01b5-49f4-41e5-8108-1dc543e86a0d install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:f8756196-40c7-4796-884b-f942aef36ccb] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:4b116889-af64-42af-ba86-75dcb3cb7828 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:1e92b45a-2e39-4786-9b6c-1e1e911a22f7:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:1e92b45a-2e39-4786-9b6c-1e1e911a22f7 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Oracle Linux 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:6f4cedbc-d663-4b63-9aa4-2853e5c2251a install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7a9f10dd-6061-42f6-b0b6-ef4edcb6199b] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:f873abe0-b138-4995-8f6f-498b423d234d vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:21158b66-f5dd-4b00-b7eb-530dcb2761fa:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:21158b66-f5dd-4b00-b7eb-530dcb2761fa installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Buster 10 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:772d48b3-323b-4278-be18-2007d89e2d4c install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:f937d909-84bb-4e63-812f-5b753d0e1a2b] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:bac315b4-66fd-4488-82f5-9808e927b4b9 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:25d89b97-91ce-4e24-96ce-2f1438592100:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:25d89b97-91ce-4e24-96ce-2f1438592100 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Server 12 SP4 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:37843877-05d7-4052-986c-a66fbd3bce73 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e40ca246-9cc9-4d59-8e14-43a813c75190] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:c060fa00-8c96-4eb8-bcc9-772daaa01885 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:2627b62b-2ae4-41ef-8c39-57233b30d6c9:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:2627b62b-2ae4-41ef-8c39-57233b30d6c9 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Red Hat Enterprise Linux 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:0e2ac206-f81a-4a0b-b3e1-f85a2d7b5b39 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:c6c2b7ed-5360-4c3c-a9b3-e32789c219bb] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:03d30863-86a2-428e-94c8-88ddfcb8cd29 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:275321e5-73b0-42e3-8300-66f927c28558:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:275321e5-73b0-42e3-8300-66f927c28558 installTime:<nil> memory:map[dynamic:[5.36870912e+08 5.36870912e+08] size:5.36870912e+08 static:[2.68435456e+08 5.36870912e+08]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Stretch 9.0 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:4e9db972-7639-4ba7-a751-b09af8630722 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29532737-9871-4968-80ca-cdf2b880b892] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:381ebb02-96d5-11e7-92b9-b8ca3a97c5fc vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:2a4f9d82-cc4c-44e8-a403-9d83eb20d1f4:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:2a4f9d82-cc4c-44e8-a403-9d83eb20d1f4 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2012 R2 (64-bit). name_label:Windows Server 2012 R2 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:5e9ed431-e728-40ca-98d6-f144ea4118cd install-methods:cdrom mac_seed:8ad32900-3c4d-49cc-898f-6d6d3c5ceefb] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:17a818b5-20a6-4d34-a7ef-320da9ef4c14 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:3b2e938d-603b-440b-ad4c-687960250ba8:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:3b2e938d-603b-440b-ad4c-687960250ba8 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise 15 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:d9e53f1b-a4f5-4d9d-b6a9-9c2a9982d750 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a08ee729-6d0a-463a-9225-a4e5e1418ff9] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:b5915805-d800-459d-826a-322dc9cf07e2 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:4241ebfa-45cf-4c57-9146-310fc12ae385:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:uefi order:cd] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:4241ebfa-45cf-4c57-9146-310fc12ae385 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 10 (64-bit). name_label:Windows 10 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:02842a2a-d283-4927-b096-a0e1ea5d2d7b install-methods:cdrom mac_seed:48d55dba-96c0-4c46-9205-fa7b741cb5cc] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:7774689b-4ca1-4dea-8545-dddd6b64c17f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:46eff517-c646-45af-91be-2ca41a1becd7:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:46eff517-c646-45af-91be-2ca41a1becd7 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Ubuntu Bionic Beaver 18.04 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:180dfd1d-1333-4e4c-9578-c7113763befa install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:5803bfac-6154-4beb-91b1-6c84fb6e2436] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:74ae424d-a1d3-4d96-9827-d1d60a4c7511 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:47d51913-f066-49f2-be19-487797d1241e:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:47d51913-f066-49f2-be19-487797d1241e installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Server 12 SP3 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:7a3825c0-3214-4c39-8b43-83850869c25a install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:0ac93ae8-2c7d-4d1e-9c5f-922e0273fc70] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:47fb0ec8-a0d5-46b8-a995-5455bf845bc7 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:4a9c9222-1133-423b-9813-81a74aad5a3a:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:4a9c9222-1133-423b-9813-81a74aad5a3a installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Oracle Linux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:a4ea6f67-f5d9-4934-acec-c15be24a426f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:09043d31-1ef4-4e5a-9672-85f5da96beca] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:6959dfe8-534c-4c58-8a8c-3c3792293543 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:4b5a11c5-1557-4484-805f-eb2d02e6d66f:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:4b5a11c5-1557-4484-805f-eb2d02e6d66f installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 10 (32-bit). name_label:Windows 10 (32-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:12fc234c-b4d8-45df-a1a0-b3e1e1b3f528 install-methods:cdrom mac_seed:4c123b70-c390-46d9-bb1e-b43efd287cbe] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:9caee571-3b07-4673-940d-1d687b2818d6 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:50d0d421-f00d-4b36-b02b-8fae81008c73:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:50d0d421-f00d-4b36-b02b-8fae81008c73 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Server 12 SP5 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:0409ffcb-b3aa-4225-90e6-4f9de939838a install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:589a633c-8e76-44f1-bd24-373dccebccc3] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:110ecfa7-0fe4-4b35-a247-0b0141a738ba vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:51b51c64-f5b5-4f34-a968-8be175aeac13:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:51b51c64-f5b5-4f34-a968-8be175aeac13 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Ubuntu Focal Fossa 20.04 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:edd9074a-3f57-4188-879b-b09fb1ef799e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:19603684-a0d3-4dfd-8a77-71bd3d22b84c] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:2cf37285-57bc-4633-a24f-0c6c825dda66 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:59b790e9-af70-49bc-a0b4-8a6199957064:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:59b790e9-af70-49bc-a0b4-8a6199957064 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Gooroom Platform 2.0 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:ae13ca18-e8bf-431c-a0ce-e6fd0db9e865 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:1e1ccddd-52ac-4ad3-a54b-fb3406f8b5d4] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:9340090e-90ca-11ea-ab10-2e858157d830 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:60daf2bb-1409-4521-8fd8-b3e84c971814:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:60daf2bb-1409-4521-8fd8-b3e84c971814 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 8.1 (32-bit). name_label:Windows 8.1 (32-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="25769803776" sr="" type="system"/></provision> import_task:OpaqueRef:fabe21a5-d840-49f5-bd21-1d362facd96e install-methods:cdrom mac_seed:19849b5e-23d8-4651-848c-030609c56062] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:2.5769803776e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:4383f051-cc9e-48d5-99e9-8fa2e979e2d0 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:6353c9eb-378b-48a2-9c6b-e5bb48c47733:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:6353c9eb-378b-48a2-9c6b-e5bb48c47733 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2012 (64-bit). name_label:Windows Server 2012 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:a8cc04e6-aaef-42c3-8d45-b46dbc1293d8 install-methods:cdrom mac_seed:dee5fe3e-4abb-48a9-b90a-43f40419040b] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:83af4ddb-e029-48ff-ba7a-11a23ff99caa vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:69943b6c-fae7-49b6-8c47-125e5d3415c9:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:69943b6c-fae7-49b6-8c47-125e5d3415c9 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Red Hat Enterprise Linux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:427f0706-bf1c-4b7f-9684-53259ec52eb9 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:eae3f3a3-82e1-4027-8d23-d059fdab40b4] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:612863ed-900d-456d-b4b7-38b70915fd1f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:735654b3-dfa1-41e8-a548-ab33bf42046e:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:735654b3-dfa1-41e8-a548-ab33bf42046e installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Rocky Linux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:6ea196eb-ec03-43b1-9aeb-d0899794a5bf install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:f4beae43-668b-426e-b79b-9d8099d3d57a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:6ce77bf9-ab30-4a1a-a757-011b52d89997 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:74d082da-e833-45d1-91c7-98db7c809e09:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:74d082da-e833-45d1-91c7-98db7c809e09 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Bullseye 11 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:0bd9ae76-be8f-431d-9d0f-42a4cb94f0ef install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:1827b8f4-9032-4ba0-ac93-ea03b048dd65] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:bfb0c8e5-e1db-4a32-9d85-757b3de0f19f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:9fa313f0-f93d-42d9-ad5d-24c801f099eb:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:9fa313f0-f93d-42d9-ad5d-24c801f099eb installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:AlmaLinux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:c7939cc0-915c-42d7-9b09-55e543beee45 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7587a805-3396-4ca6-be87-3265c476559a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:7aa32be8-a06c-4ade-8a1d-49e51e03e9d2 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:a25ec42d-060c-410d-ade3-2b8846404069:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:a25ec42d-060c-410d-ade3-2b8846404069 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Desktop 12 SP4 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:df1c94ad-2548-4b17-b581-a576eaa5f5b5 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:07dda179-1e44-4fa5-ab19-856a952b7494] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:847f7f36-6da8-487d-940d-f0f06939a1b6 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:a6aed9d6-b4df-4978-816a-d20c55b76b11:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:a6aed9d6-b4df-4978-816a-d20c55b76b11 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Desktop 12 SP3 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:d8aabbf8-0b5a-42fe-863b-6eaea2272e83 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:3788c138-ef92-40bf-98f4-07a33a68af72] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:dda40663-76e5-45dd-a644-7eb0bed6a1f7 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:b91f31d8-aa99-47a2-b83e-e2d7b728b20b:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:b91f31d8-aa99-47a2-b83e-e2d7b728b20b installTime:<nil> memory:map[dynamic:[2.68435456e+08 2.68435456e+08] size:2.68435456e+08 static:[1.34217728e+08 2.68435456e+08]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Jessie 8.0 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:e347e061-18b1-4519-bda4-1288d4f2f43a install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:912dfaf2-0ca3-44eb-bc65-e6fa7600bf67] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:79abf1d8-4b61-4fc3-aafa-58b0ccae48d3 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:c4ca0fad-2043-43c6-beb8-8b21e64e2fc4:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:c4ca0fad-2043-43c6-beb8-8b21e64e2fc4 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 8.1 (64-bit). name_label:Windows 8.1 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="25769803776" sr="" type="system"/></provision> import_task:OpaqueRef:736eeda6-e6ba-4284-bcce-64960351a010 install-methods:cdrom mac_seed:41f948e6-1e26-4903-bc2c-731950705ffa] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:2.5769803776e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:11c46476-bd5c-4d75-9cf0-57fe55343ba3 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:cd0e104a-6cc6-450f-93ec-d0106d6755cb:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:uefi order:cd] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:cd0e104a-6cc6-450f-93ec-d0106d6755cb installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2016 (64-bit). name_label:Windows Server 2016 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:b0042791-7880-40e2-add9-bd6edd5c9ac1 install-methods:cdrom mac_seed:f32740af-b870-4ad4-a5ea-dcb4a92b914a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:c15fab79-6cce-4e1f-916f-a64b98ff9e7d vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:cf262868-6222-4801-b32f-8f47a9e4d56d:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:cf262868-6222-4801-b32f-8f47a9e4d56d installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:NeoKylin Linux Server 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:121c0b01-09c4-4547-97c9-fc89f94be190 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:82496c88-2964-4b66-a93b-46044cf2ad34] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:7279a78a-4756-4fc3-99f0-3e7694c0319e vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:d97c4833-59d6-4ea2-80b1-d01281ba9665:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:d97c4833-59d6-4ea2-80b1-d01281ba9665 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:CentOS 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:cd256c85-ca6d-4985-96bf-8ac5d84cbbdf install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:54a35e53-c7b2-4742-bab2-ce7ec9215d87] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:11fd3dc9-96cc-49af-b091-a2ca7e94c589 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:dfa459b1-30de-453c-a3a9-2134b9dc7b65:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:dfa459b1-30de-453c-a3a9-2134b9dc7b65 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Ubuntu Xenial Xerus 16.04 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:bda54f4c-5f0f-4331-80f6-10cc80799975 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:2091b9d1-5adb-44f4-84aa-31aac35fa5df] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:e9763585-f70a-4526-bfcb-822064742e9f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:dff1569f-76ab-4a27-8219-11f47f5ea71c:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:dff1569f-76ab-4a27-8219-11f47f5ea71c installTime:<nil> memory:map[dynamic:[2.68435456e+08 2.68435456e+08] size:2.68435456e+08 static:[1.34217728e+08 2.68435456e+08]] name_description:Template which allows VM installation from install media name_label:Other install media os_version:<nil> other:map[default_template:true import_task:OpaqueRef:da35b53c-32a7-4ce5-9572-cdf98c147bb9 install-methods:cdrom mac_seed:7e7c7cf2-ff27-4f02-9125-7ba54a108690] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom]] type:VM-template uuid:552bce37-51b2-445d-84f2-5f33fa112d7e vga:cirrus videoram:4 virtualizationMode:hvm] OpaqueRef:e9b2df52-9571-44d9-bdba-784c14b3e84f:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:e9b2df52-9571-44d9-bdba-784c14b3e84f installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:CoreOS os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:4af19810-cc6d-4fb7-bfaf-3d01a6bc6d6b install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a43d8021-595e-4c53-8b4c-4e1c18e87831] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:094706dd-5d22-4830-99b7-c710769c9dcc vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:f4c4de5e-4e11-4d09-93c5-c57fa275afd4:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:f4c4de5e-4e11-4d09-93c5-c57fa275afd4 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:CentOS 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:9d984c41-a4ff-44a6-90af-85ffef21ee96 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:de380af2-9d27-4e22-b36e-8647eaeb52a4] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:4b6425be-728a-4a2c-8333-0aef209a348b vga:std videoram:8 virtualizationMode:hvm] b99aaaca-f50d-a8e2-25d4-a3f1adba8744:map[$VBDs:[f41a5254-3d7b-95f0-9bcb-92d12fab21bf 8fbf2ac4-84f4-c74c-b3f2-b822e5cbf0c6] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e7422074-978f-1dcc-605b-201bbbc23d87] addresses:map[0/ipv4/0:192.168.3.38 0/ipv6/0:fe80::58b7:79ff:fe4a:cd20] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:b99aaaca-f50d-a8e2-25d4-a3f1adba8744 installTime:<nil> mainIpAddress:192.168.3.38 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:0efa88da-c693-c9ed-927b-eb7f69d67c7a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:b99aaaca-f50d-a8e2-25d4-a3f1adba8744 vga:std videoram:8 virtualizationMode:hvm]]: result with error: <nil>: timestamp=2021-12-16T11:11:10.967-0500
2021-12-16T11:11:10.969-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:SR]] and received map[02f2b444-e5fa-5054-15c5-91fc0b4e662e:map[$PBDs:[07b5373f-da70-da7d-2f03-996e849a8b66] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:iso VDIs:[d06793b4-8323-4ad2-b98d-2e06db63fc77 866d72fd-6f7a-409a-acb2-3c3df23fbd7d] content_type:iso current_operations:map[] id:02f2b444-e5fa-5054-15c5-91fc0b4e662e name_description:local iso repository name_label:local_ISO other_config:map[dirty:] physical_usage:1.1415793664e+10 shared:false size:1.88898304e+10 sm_config:map[] tags:[] type:SR usage:8.684617728e+09 uuid:02f2b444-e5fa-5054-15c5-91fc0b4e662e] 1fe736d0-2eef-4c5b-a5c7-5dcc18c697f3:map[$PBDs:[c7e711be-78fa-3afe-6da0-9ebd36b66654] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:iso VDIs:[6360ca61-f284-4107-9453-c1545061978d] content_type:iso current_operations:map[] id:1fe736d0-2eef-4c5b-a5c7-5dcc18c697f3 name_description:ISO name_label:ISO other_config:map[dirty:] physical_usage:1.1415793664e+10 shared:false size:1.88898304e+10 sm_config:map[] tags:[] type:SR usage:9.58398464e+08 uuid:1fe736d0-2eef-4c5b-a5c7-5dcc18c697f3] 54f5be2c-572c-cadd-5762-a678fd5521ad:map[$PBDs:[0aef93e0-edbd-cd89-b889-e8193e86fd4a] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:iso VDIs:[cc849e1b-68fd-4c3f-bc63-1c471b6199f6 b3474a0d-67e7-44fd-98a4-8f915f8895fb 2689ff6a-0822-4029-ab80-9010c74a13fb] content_type:iso current_operations:map[] id:54f5be2c-572c-cadd-5762-a678fd5521ad name_description:XCP-ng Tools ISOs name_label:XCP-ng Tools other_config:map[i18n-key:xenserver-tools i18n-original-value-name_description:XCP-ng Tools ISOs i18n-original-value-name_label:XCP-ng Tools xenserver_tools_sr:true xensource_internal:true] physical_usage:-1 shared:true size:-1 sm_config:map[] tags:[] type:SR usage:3.18976e+07 uuid:54f5be2c-572c-cadd-5762-a678fd5521ad] 8fd11492-f4b9-762c-1583-373ff9b305e9:map[$PBDs:[89467cd7-74f8-d34f-fa70-59ba3b081955] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:ext VDIs:[bfc7f0d8-d5d8-422f-8813-e7463cb37bae 01727cb3-7a30-4c93-8467-a2f4bf0d29e9 b1293477-0405-4731-bf31-fc77bffdf0ba d641fb91-320a-4191-8b29-7515188204e5 187af89e-8c2a-4e89-a243-403afd1e9f0d d7c8b62c-d4b9-4fc9-91a5-e140405b40ca 02f744b2-7e5e-45d8-8dd9-145b7dba0748 513ea4d9-3503-47de-9fd1-243a2ecb084b 2fe88c92-d8cb-4d4a-b910-52b56c329673 adda4916-253d-42f9-a351-15412759e9fd c5b1024f-c12b-4d7f-9537-bdfe5a2750e6 399dd15a-6160-4976-b3db-a390b29e35c6 a074b6a4-231d-477f-9ee4-55cdc9d21ca1 e09e5c0e-f3e7-4d54-8d51-3268f3f323e1 c7cf2a52-6330-46e3-9a90-f30196f4e944 54a5e6ab-c455-4c1b-9d6f-fa7e90011807 b157090e-dc08-4c65-a793-480b9fa3776c fc0f00f4-c612-47cf-b5d0-a4bb7496d7d3 2baa7ad9-4931-4b90-98fc-df652bb1db7d b28387ca-f21c-49ee-aa29-b6ae337008aa aef66c0e-831d-4b16-a749-956b427b1ac7 140c3e28-14b3-4c9c-be9a-44b22737b7c8 21d87ea0-220d-49ff-b658-b6d939afdc8c f42ac5b1-5590-4b72-b052-e91594d8bed8 e7d543c0-ceba-484f-bfdd-d2c32fa952c0 a779a8b0-279f-468e-8af1-bdbda44fe33c 97d80d0a-1d97-46e7-a470-bfaac2250ec6 9cd20875-8409-42ee-b62d-9021e757cd25 702381ee-9e7c-4da7-9a35-d6cb2500f619 051bc782-b3a3-481a-b251-f9076f1cbb7a 7206997e-fa6a-43c3-be7f-e5dbe02c6168 023d14c0-77c8-42f7-aa37-e0c261b93a98 0c8f8922-e867-442b-9e78-7eeabe7ec0b3 3d377d97-9304-4850-98f1-b35ab41f13cc 7ea6302d-62bf-4023-9448-0b79446d19d6 b375c6f9-f6b3-4096-981a-87deaea1d035 629d7d02-380e-489e-99fa-ef51b71bd9aa c198e824-eb75-4e98-a7be-e260b9fc3dee c98fe6bc-5276-4a80-8357-8b2f45792b5d ed92ab53-859e-4013-8ff2-f29d58ce138d a71a8a28-a80f-4859-846e-b09bb4bdb862 2fbc3d5e-c5fd-49e5-afa7-5e2ffac08a32 adf8ec1b-b470-4283-a87b-1b4c9e4e821b 0d0b71bb-7d60-493d-bc2b-c9aa8f63c6b6 28ee64a9-42c7-45fc-b78a-52ecad7d438a dd76d2bb-9015-4988-ae1f-eea9387a96e5 0cf56e7c-6e9e-4b80-87fd-4faea6a53453 541541e8-76e8-4a76-bc87-5c1f9ae138d8 73d7db45-9ebc-4032-b8d6-5d0475c9f319 69c37de9-299a-4be1-94c2-b4a63201cafa 6eeae262-8c57-475a-be52-e735ab21e6c4 f55af4ea-0785-407c-add3-4d56cfd228da 088a8890-6d2c-429e-b4ab-821cd954e95e 4e8d9312-a4a4-4b5d-b274-b8bbf25d0ec1 79677852-2994-41b8-a726-1dda4d7d91aa 467d95f2-abd2-44c7-8008-38eb904170e6 ce0e90aa-9334-4733-b2e6-abe20daef7d6 efb02260-d48a-4dd8-92d1-03850bdfad27 4c989415-4f83-447c-b0cd-0e3298da6aa1 1f0c009c-97c9-4465-bcce-91d0ccf5204e 4fb4d8d6-48b5-46b9-8c70-851593638b8f bb23de90-6178-41a7-b430-74e1d4a7ba8d 02ef5fc3-c712-42ed-8774-a99921e184a1 d3d4369f-25f2-4ce5-9507-0c9b88cc7f9d 7cab82e1-6e26-4006-8f96-2ffb8a5ff578 b2469869-9886-4797-854c-b471181a6322 080bb12a-c628-4330-92e7-3fb5bcd08bbd e3c1970a-a5b0-4707-a4b6-f585260f4cbc acf1a24e-9b04-45dd-893b-c738aa273594 4bb0cb65-3a0c-449c-971a-94824c3f298a abeb0bd7-8577-4f97-9fa4-6042f7bb7dd1 fc9c23bc-52e0-4ed1-ae76-14f8a73a95ef d7016cdf-1b72-4b1d-871a-dc3b040ca038 533700e6-4b5c-4d1a-acb8-718adafb5c9b 79985475-9e95-4181-a380-e3dd11165fa5 39293dfe-edd8-47b6-b385-be826ee61cf1 f768357a-181d-4967-942a-b009d1a54a07 5229d3e7-9752-43ab-a6db-479e3e45a903 9934d52f-2aae-4b88-9136-deaa6454dba0 35d5bef5-6145-4749-891a-c04e8fc30c32 091e2dfb-a75f-4c24-be67-6a940dd8cf1b ac625d8b-1d7d-4953-86db-d467288f3b4e b4276ea5-c40c-4173-96d1-10d585685d0c 4ddc9474-bbd5-4af2-ab0a-cd65fb67ba82 04bc712c-4fd9-41bd-9820-22f362a8648b 27f8f5f5-4d8c-4fe7-a20c-1fc26ec38a80 555e09ef-ed7c-4da3-8d80-43b61966c884 521d0a86-95f5-4ffd-bfe9-a732026b018f 0cd29dc4-42ab-4b93-864b-2f26c2a1ea2d 9fa84f6a-dfae-4e01-a4bc-be9d045b050d 4ea2c365-2248-4e95-81ec-73da907c11f2 c66a8b5a-1644-441d-8793-0623c33a46e6 0e5ed83d-ae09-429b-803d-80eb89aefce6 642117f0-f3ff-4f18-bd18-9f9e75eb4a37 fddd8c78-14c2-4409-9cfc-fe83fd2821c5 b9c7ddf1-205b-4f88-89f0-c3d746f6bed7 e8dd7c9f-66c2-4853-872f-3b9bd945af15 0e1ccc21-cf34-4d3b-92c2-d8ee05d4e03d f2449759-29d1-40f5-9d58-480dbb0a333c 41374341-835b-46be-bb8e-777c8c93ba80 67f8e971-853e-4871-96f4-a8e9e609171f 9f1e319c-5dda-4bf6-af33-68ff100aa196 3fc91d7d-3665-4d22-bc71-bf663b07e440 3016277e-1216-4878-b666-0a6ae987fda6 a26e109a-a6c5-4ed4-9e9d-b9cb5c5be6cc fde7bfd5-895c-4bb9-871d-4dbb83252f20 fee9af7f-6dd8-4d90-a1ee-3a562af5a87c f7224c69-79ac-406d-889f-099496b59abc 254b2c85-57b1-4d57-a606-08bf069274f8 cba4132e-b200-43f2-9350-433fa9a97002 d16e4e03-ef78-473d-9ebb-e1844fdd4be6 c3982c71-95c8-4763-bde0-b3c624a03911 f0071cd5-a3a2-4354-aa98-91e9dd0bb7c0 ef86654f-0396-4096-9f9a-8bf2edacf800 6f021ecb-f67e-40bd-86b5-83bef6dea3fd 4d7035f0-cd56-47dc-a8f1-d2af7daf25b5 98919cb5-c627-4cb3-8adf-d1bb0f9f30a0 e732eb8d-5694-4dfb-901f-d65636e1c04b 56a79535-0d35-471d-a440-3fd9e5b8d4ef dfd53e7e-a761-42e3-86c6-758d36c51c05 bc616a81-0314-4d2a-b36b-1108a336a730] allocationStrategy:thin content_type:user current_operations:map[] id:8fd11492-f4b9-762c-1583-373ff9b305e9 name_description: name_label:Local storage other_config:map[i18n-key:local-storage i18n-original-value-name_label:Local storage] physical_usage:3.01989900288e+11 shared:false size:9.4049716224e+11 sm_config:map[devserial:scsi-35000039ffbc95d5b] tags:[] type:SR usage:3.03785050112e+12 uuid:8fd11492-f4b9-762c-1583-373ff9b305e9] c3446657-b59a-20e8-717e-e8702976ca0b:map[$PBDs:[2b3dfbe2-60b4-3fb9-dfae-7077a41c3bfb] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:udev VDIs:[67335f20-9824-4d0e-8e43-9fe0a1c262d6] allocationStrategy:thick content_type:iso current_operations:map[] id:c3446657-b59a-20e8-717e-e8702976ca0b name_description:Physical DVD drives name_label:DVD drives other_config:map[i18n-key:local-hotplug-cd i18n-original-value-name_description:Physical DVD drives i18n-original-value-name_label:DVD drives] physical_usage:1.073741312e+09 shared:false size:1.073741312e+09 sm_config:map[type:cd] tags:[] type:SR usage:1.073741312e+09 uuid:c3446657-b59a-20e8-717e-e8702976ca0b] f103121d-7c25-73b1-7a7a-721634270eca:map[$PBDs:[9db680f4-cda7-d66e-5efd-52eab380cb85] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f SR_type:udev VDIs:[] allocationStrategy:thick content_type:disk current_operations:map[] id:f103121d-7c25-73b1-7a7a-721634270eca name_description: name_label:Removable storage other_config:map[i18n-key:local-hotplug-disk i18n-original-value-name_label:Removable storage] physical_usage:0 shared:false size:0 sm_config:map[type:block] tags:[] type:SR usage:0 uuid:f103121d-7c25-73b1-7a7a-721634270eca]]: result with error: <nil>: timestamp=2021-12-16T11:11:10.969-0500
2021-12-16T11:11:10.970-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [DEBUG] Found the following objects for type 'client.StorageRepository' from xo.getAllObjects: [{Id:8fd11492-f4b9-762c-1583-373ff9b305e9 Uuid:8fd11492-f4b9-762c-1583-373ff9b305e9 NameLabel:Local storage PoolId:f212dec4-4682-6045-6dae-1fe80229e66f SRType:ext Container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 PhysicalUsage:301989900288 Size:940497162240 Usage:3037850501120 Tags:[]}]: timestamp=2021-12-16T11:11:10.970-0500
2021-12-16T11:11:10.972-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [DEBUG] Found the following objects for type 'client.Template' from xo.getAllObjects: [{Id:6f73645b-80bf-54d5-82a9-72d83b84cba2 Uuid:6f73645b-80bf-54d5-82a9-72d83b84cba2 NameLabel:AMI PoolId:f212dec4-4682-6045-6dae-1fe80229e66f TemplateInfo:{Arch: Disks:[]}}]: timestamp=2021-12-16T11:11:10.972-0500
2021-12-16T11:11:10.973-0500 [DEBUG] Resource instance state not found for node "xenorchestra_vm.vm", instance xenorchestra_vm.vm
2021-12-16T11:11:10.973-0500 [DEBUG] ReferenceTransformer: "xenorchestra_vm.vm" references: []
2021-12-16T11:11:10.977-0500 [DEBUG] refresh: xenorchestra_vm.vm: no state, so not refreshing
2021-12-16T11:11:10.980-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [DEBUG] VM 'disk.0.attached' attribute has transitioned from '' to 'true' when PowerState ''. Suppress diff: true: timestamp=2021-12-16T11:11:10.980-0500
2021-12-16T11:11:10.980-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:10 [DEBUG] VM 'network.0.attached' attribute has transitioned from '' to 'true' when PowerState ''. Suppress diff: true: timestamp=2021-12-16T11:11:10.980-0500
2021-12-16T11:11:10.981-0500 [WARN]  Provider "registry.terraform.io/terra-farm/xenorchestra" produced an invalid plan for xenorchestra_vm.vm, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .cpu_weight: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .cpu_cap: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .vga: planned value cty.StringVal("std") for a non-computed attribute
      - .videoram: planned value cty.NumberIntVal(8) for a non-computed attribute
      - .hvm_boot_firmware: planned value cty.StringVal("bios") for a non-computed attribute
      - .core_os: planned value cty.False for a non-computed attribute
      - .exp_nested_hvm: planned value cty.False for a non-computed attribute
      - .start_delay: planned value cty.NumberIntVal(0) for a non-computed attribute
2021-12-16T11:11:10.982-0500 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-12-16T11:11:10.983-0500 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 pid=62597
2021-12-16T11:11:10.984-0500 [DEBUG] provider: plugin exited

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # xenorchestra_vm.vm will be created
  + resource "xenorchestra_vm" "vm" {
      + auto_poweron      = true
      + core_os           = false
      + cpu_cap           = 0
      + cpu_weight        = 0
      + cpus              = 2
      + exp_nested_hvm    = false
      + hvm_boot_firmware = "bios"
      + id                = (known after apply)
      + ipv4_addresses    = (known after apply)
      + ipv6_addresses    = (known after apply)
      + memory_max        = 2147484000
      + name_label        = "Test"
      + power_state       = (known after apply)
      + start_delay       = 0
      + template          = "6f73645b-80bf-54d5-82a9-72d83b84cba2"
      + vga               = "std"
      + videoram          = 8
      + wait_for_ip       = true

      + disk {
          + name_label = "VM root volume"
          + position   = (known after apply)
          + size       = 53687090000
          + sr_id      = "8fd11492-f4b9-762c-1583-373ff9b305e9"
          + vbd_id     = (known after apply)
          + vdi_id     = (known after apply)
        }

      + network {
          + device         = (known after apply)
          + ipv4_addresses = (known after apply)
          + ipv6_addresses = (known after apply)
          + mac_address    = (known after apply)
          + network_id     = "06e1ffdc-30e9-66f7-f265-992376416c35"
        }
    }

Plan: 1 to add, 0 to change, 0 to destroy.

Changes to Outputs:
  + all-ipv4-ips-for-vm = (known after apply)
2021-12-16T11:11:10.986-0500 [DEBUG] command: asking for input: "\nDo you want to perform these actions?"

Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.

  Enter a value: yes

2021-12-16T11:11:13.462-0500 [INFO]  backend/local: apply calling Apply
2021-12-16T11:11:13.462-0500 [DEBUG] Building and walking apply graph for NormalMode plan
2021-12-16T11:11:13.462-0500 [DEBUG] Resource state not found for node "xenorchestra_vm.vm", instance xenorchestra_vm.vm
2021-12-16T11:11:13.462-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_pool.pool (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:13.462-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_template.vm_template (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:13.462-0500 [DEBUG] ProviderTransformer: "xenorchestra_vm.vm" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:13.462-0500 [DEBUG] ProviderTransformer: "xenorchestra_vm.vm (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:13.462-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_sr.sr (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:13.462-0500 [DEBUG] ProviderTransformer: "data.xenorchestra_network.network (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/terra-farm/xenorchestra"]
2021-12-16T11:11:13.463-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_sr.sr (expand)" references: []
2021-12-16T11:11:13.463-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_network.network (expand)" references: []
2021-12-16T11:11:13.463-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_pool.pool (expand)" references: []
2021-12-16T11:11:13.463-0500 [DEBUG] ReferenceTransformer: "data.xenorchestra_template.vm_template (expand)" references: []
2021-12-16T11:11:13.463-0500 [DEBUG] ReferenceTransformer: "output.all-ipv4-ips-for-vm" references: [xenorchestra_vm.vm xenorchestra_vm.vm xenorchestra_vm.vm (expand)]
2021-12-16T11:11:13.463-0500 [DEBUG] ReferenceTransformer: "xenorchestra_vm.vm" references: [data.xenorchestra_template.vm_template (expand) data.xenorchestra_network.network (expand) data.xenorchestra_sr.sr (expand)]
2021-12-16T11:11:13.463-0500 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/terra-farm/xenorchestra\"]" references: []
2021-12-16T11:11:13.463-0500 [DEBUG] ReferenceTransformer: "xenorchestra_vm.vm (expand)" references: []
2021-12-16T11:11:13.464-0500 [DEBUG] pruneUnusedNodes: data.xenorchestra_pool.pool (expand) is no longer needed, removing
2021-12-16T11:11:13.464-0500 [DEBUG] Starting graph walk: walkApply
2021-12-16T11:11:13.464-0500 [DEBUG] created provider logger: level=debug
2021-12-16T11:11:13.465-0500 [INFO]  provider: configuring client automatic mTLS
2021-12-16T11:11:13.478-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 args=[.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0]
2021-12-16T11:11:13.478-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 pid=62670
2021-12-16T11:11:13.479-0500 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0
2021-12-16T11:11:13.488-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: configuring server automatic mTLS: timestamp=2021-12-16T11:11:13.488-0500
2021-12-16T11:11:13.543-0500 [DEBUG] provider.terraform-provider-xenorchestra_v0.22.0: plugin address: address=/tmp/plugin594798063 network=unix timestamp=2021-12-16T11:11:13.543-0500
2021-12-16T11:11:13.543-0500 [DEBUG] provider: using plugin: version=5
2021-12-16T11:11:13.595-0500 [WARN]  ValidateProviderConfig from "provider[\"registry.terraform.io/terra-farm/xenorchestra\"]" changed the config value, but that value is unused
2021-12-16T11:11:13.617-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] VM 'network.0.attached' attribute has transitioned from '' to 'true' when PowerState ''. Suppress diff: true: timestamp=2021-12-16T11:11:13.617-0500
2021-12-16T11:11:13.617-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] VM 'disk.0.attached' attribute has transitioned from '' to 'true' when PowerState ''. Suppress diff: true: timestamp=2021-12-16T11:11:13.617-0500
2021-12-16T11:11:13.619-0500 [WARN]  Provider "registry.terraform.io/terra-farm/xenorchestra" produced an invalid plan for xenorchestra_vm.vm, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .core_os: planned value cty.False for a non-computed attribute
      - .exp_nested_hvm: planned value cty.False for a non-computed attribute
      - .start_delay: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .cpu_cap: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .cpu_weight: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .vga: planned value cty.StringVal("std") for a non-computed attribute
      - .videoram: planned value cty.NumberIntVal(8) for a non-computed attribute
      - .hvm_boot_firmware: planned value cty.StringVal("bios") for a non-computed attribute
xenorchestra_vm.vm: Creating...
2021-12-16T11:11:13.619-0500 [INFO]  Starting apply for xenorchestra_vm.vm
2021-12-16T11:11:13.620-0500 [DEBUG] xenorchestra_vm.vm: applying the planned Create change
2021-12-16T11:11:13.621-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] VM 'disk.0.attached' attribute has transitioned from '' to 'true' when PowerState ''. Suppress diff: true: timestamp=2021-12-16T11:11:13.621-0500
2021-12-16T11:11:13.621-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] setting computed for "ipv6_addresses" from ComputedKeys: timestamp=2021-12-16T11:11:13.621-0500
2021-12-16T11:11:13.621-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] setting computed for "ipv4_addresses" from ComputedKeys: timestamp=2021-12-16T11:11:13.621-0500
2021-12-16T11:11:13.621-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] setting computed for "network.0.ipv6_addresses" from ComputedKeys: timestamp=2021-12-16T11:11:13.621-0500
2021-12-16T11:11:13.621-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] setting computed for "network.0.ipv4_addresses" from ComputedKeys: timestamp=2021-12-16T11:11:13.621-0500
2021-12-16T11:11:13.621-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] setting computed for "network.0.ipv4_addresses" from ComputedKeys: timestamp=2021-12-16T11:11:13.621-0500
2021-12-16T11:11:13.621-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] setting computed for "network.0.ipv6_addresses" from ComputedKeys: timestamp=2021-12-16T11:11:13.621-0500
2021-12-16T11:11:13.621-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] VM 'network.0.attached' attribute has transitioned from '' to 'true' when PowerState ''. Suppress diff: true: timestamp=2021-12-16T11:11:13.621-0500
2021-12-16T11:11:13.638-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM-template]] and received map[0c356be3-6325-177b-6e48-0498470a81b3:map[$VBDs:[a511e595-bac6-4682-b7c4-d8a94937daf1] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[45c6eefa-e6cd-7115-1aba-33857411c358] addresses:map[0/ipv4/0:192.168.0.36 0/ipv6/0:fd00:ac20:2ebf:2572:70f8:acff:fe17:c26f 0/ipv6/1:2607:fea8:4fc0:56:70f8:acff:fe17:c26f 0/ipv6/2:fe80::70f8:acff:fe17:c26f] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:1 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0c356be3-6325-177b-6e48-0498470a81b3 installTime:<nil> mainIpAddress:192.168.0.36 memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.442450944e+09 static:[5.36870912e+08 6.442450944e+09]] name_description:template name_label:Matrix os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-9-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:65808867-2d70-3fc4-8f3a-d0d414fd2d62] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:0c356be3-6325-177b-6e48-0498470a81b3 vga:std videoram:8 virtualizationMode:hvm] 47b104d0-69b3-08e2-4108-bebefdadcac0:map[$VBDs:[594d489a-6db9-dda9-0dee-a6e5637dedbd bb3e3e27-d313-325e-8e1f-d0ef303133cb] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[c4fe9375-84d3-e84f-ec70-f3da1672ef55] addresses:map[0/ipv4/0:192.168.3.37 0/ipv6/0:fe80::78bd:658a:cb:6c4c] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:47b104d0-69b3-08e2-4108-bebefdadcac0 installTime:<nil> mainIpAddress:192.168.3.37 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.147483648e+09 4.294967296e+09]] name_description: name_label:CentOS _clone os_version:map[distro:centos major:7 minor:9 name:CentOS Linux release 7.9.2009 (Core) uname:3.10.0-1160.el7.x86_64] other:map[base_template_name:CentOS 7 import_task:OpaqueRef:b1cc289c-1201-49ec-9c68-56fb963c641c install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ec0dcea1-0396-3457-dcfc-525946c893e8] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:47b104d0-69b3-08e2-4108-bebefdadcac0 vga:std videoram:8 virtualizationMode:hvm] 656c51b8-9aee-0ee5-5152-c47986673e44:map[$VBDs:[72268e59-f8a1-bbd6-36da-3d0a537ee635 7edf44ac-f223-dd2c-f9f2-e941c4c2c3fc] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[85994cd2-c8b6-56c1-37a6-b0edf51312fd] addresses:map[0/ipv4/0:192.168.5.25 0/ipv6/0:fe80::b4f3:d9ff:fe46:2bb4] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] cpuCap:<nil> current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:656c51b8-9aee-0ee5-5152-c47986673e44 installTime:<nil> mainIpAddress:192.168.5.25 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Debian 10 Cloudinit ready template from XO Hub name_label:Debian 10 Cloudinit os_version:map[distro:debian major:10 minor:1 name:Debian 10.1 uname:4.19.0-6-amd64] other:map[base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:e915ab7a-9d8b-44d1-be44-d35c3656c973 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a5f442c2-f2ee-0ce6-08da-7f8b5d21b7dd xo:resource:namespace:Debian10 xo:resource:xva:id:a677aa91-f5d5-46ec-bd53-956b73fc7871 xo:resource:xva:version:1.0.0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:656c51b8-9aee-0ee5-5152-c47986673e44 vga:cirrus videoram:8 virtualizationMode:hvm] 6f73645b-80bf-54d5-82a9-72d83b84cba2:map[$VBDs:[cc91904a-117a-6190-9d31-dfbea5be95f9 61986d31-7a83-7996-d2ba-053be34b7c78] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[4bf96f83-86b5-6424-08ae-b5d7bb26f9e0] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:6f73645b-80bf-54d5-82a9-72d83b84cba2 installTime:<nil> mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:AMI os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:85e0cf48-933b-dc5c-6fd0-9f59b12ea1e5] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:6f73645b-80bf-54d5-82a9-72d83b84cba2 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:1097d702-a088-4f27-a48f-34d956decee2:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:uefi order:cd] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:1097d702-a088-4f27-a48f-34d956decee2 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2019 (64-bit). name_label:Windows Server 2019 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:4a9f6fcb-2a7f-4720-99c4-159aa86b7890 install-methods:cdrom mac_seed:83cad216-0249-48c9-b6f0-35c6e622cbfe] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:d986ea98-09fa-4e9a-9ee6-e6c78119496f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:16fdfde2-8749-4dfe-8907-5d7b22f89b74:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:16fdfde2-8749-4dfe-8907-5d7b22f89b74 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Scientific Linux 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:605d01b5-49f4-41e5-8108-1dc543e86a0d install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:f8756196-40c7-4796-884b-f942aef36ccb] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:4b116889-af64-42af-ba86-75dcb3cb7828 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:1e92b45a-2e39-4786-9b6c-1e1e911a22f7:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:1e92b45a-2e39-4786-9b6c-1e1e911a22f7 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Oracle Linux 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:6f4cedbc-d663-4b63-9aa4-2853e5c2251a install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7a9f10dd-6061-42f6-b0b6-ef4edcb6199b] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:f873abe0-b138-4995-8f6f-498b423d234d vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:21158b66-f5dd-4b00-b7eb-530dcb2761fa:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:21158b66-f5dd-4b00-b7eb-530dcb2761fa installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Buster 10 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:772d48b3-323b-4278-be18-2007d89e2d4c install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:f937d909-84bb-4e63-812f-5b753d0e1a2b] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:bac315b4-66fd-4488-82f5-9808e927b4b9 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:25d89b97-91ce-4e24-96ce-2f1438592100:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:25d89b97-91ce-4e24-96ce-2f1438592100 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Server 12 SP4 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:37843877-05d7-4052-986c-a66fbd3bce73 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e40ca246-9cc9-4d59-8e14-43a813c75190] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:c060fa00-8c96-4eb8-bcc9-772daaa01885 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:2627b62b-2ae4-41ef-8c39-57233b30d6c9:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:2627b62b-2ae4-41ef-8c39-57233b30d6c9 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Red Hat Enterprise Linux 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:0e2ac206-f81a-4a0b-b3e1-f85a2d7b5b39 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:c6c2b7ed-5360-4c3c-a9b3-e32789c219bb] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:03d30863-86a2-428e-94c8-88ddfcb8cd29 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:275321e5-73b0-42e3-8300-66f927c28558:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:275321e5-73b0-42e3-8300-66f927c28558 installTime:<nil> memory:map[dynamic:[5.36870912e+08 5.36870912e+08] size:5.36870912e+08 static:[2.68435456e+08 5.36870912e+08]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Stretch 9.0 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:4e9db972-7639-4ba7-a751-b09af8630722 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29532737-9871-4968-80ca-cdf2b880b892] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:381ebb02-96d5-11e7-92b9-b8ca3a97c5fc vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:2a4f9d82-cc4c-44e8-a403-9d83eb20d1f4:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:2a4f9d82-cc4c-44e8-a403-9d83eb20d1f4 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2012 R2 (64-bit). name_label:Windows Server 2012 R2 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:5e9ed431-e728-40ca-98d6-f144ea4118cd install-methods:cdrom mac_seed:8ad32900-3c4d-49cc-898f-6d6d3c5ceefb] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:17a818b5-20a6-4d34-a7ef-320da9ef4c14 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:3b2e938d-603b-440b-ad4c-687960250ba8:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:3b2e938d-603b-440b-ad4c-687960250ba8 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise 15 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:d9e53f1b-a4f5-4d9d-b6a9-9c2a9982d750 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a08ee729-6d0a-463a-9225-a4e5e1418ff9] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:b5915805-d800-459d-826a-322dc9cf07e2 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:4241ebfa-45cf-4c57-9146-310fc12ae385:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:uefi order:cd] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:4241ebfa-45cf-4c57-9146-310fc12ae385 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 10 (64-bit). name_label:Windows 10 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:02842a2a-d283-4927-b096-a0e1ea5d2d7b install-methods:cdrom mac_seed:48d55dba-96c0-4c46-9205-fa7b741cb5cc] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:7774689b-4ca1-4dea-8545-dddd6b64c17f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:46eff517-c646-45af-91be-2ca41a1becd7:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:46eff517-c646-45af-91be-2ca41a1becd7 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Ubuntu Bionic Beaver 18.04 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:180dfd1d-1333-4e4c-9578-c7113763befa install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:5803bfac-6154-4beb-91b1-6c84fb6e2436] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:74ae424d-a1d3-4d96-9827-d1d60a4c7511 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:47d51913-f066-49f2-be19-487797d1241e:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:47d51913-f066-49f2-be19-487797d1241e installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Server 12 SP3 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:7a3825c0-3214-4c39-8b43-83850869c25a install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:0ac93ae8-2c7d-4d1e-9c5f-922e0273fc70] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:47fb0ec8-a0d5-46b8-a995-5455bf845bc7 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:4a9c9222-1133-423b-9813-81a74aad5a3a:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:4a9c9222-1133-423b-9813-81a74aad5a3a installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Oracle Linux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:a4ea6f67-f5d9-4934-acec-c15be24a426f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:09043d31-1ef4-4e5a-9672-85f5da96beca] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:6959dfe8-534c-4c58-8a8c-3c3792293543 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:4b5a11c5-1557-4484-805f-eb2d02e6d66f:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:4b5a11c5-1557-4484-805f-eb2d02e6d66f installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 10 (32-bit). name_label:Windows 10 (32-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:12fc234c-b4d8-45df-a1a0-b3e1e1b3f528 install-methods:cdrom mac_seed:4c123b70-c390-46d9-bb1e-b43efd287cbe] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:9caee571-3b07-4673-940d-1d687b2818d6 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:50d0d421-f00d-4b36-b02b-8fae81008c73:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:50d0d421-f00d-4b36-b02b-8fae81008c73 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Server 12 SP5 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:0409ffcb-b3aa-4225-90e6-4f9de939838a install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:589a633c-8e76-44f1-bd24-373dccebccc3] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:110ecfa7-0fe4-4b35-a247-0b0141a738ba vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:51b51c64-f5b5-4f34-a968-8be175aeac13:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] 
newknowledg commented 2 years ago
VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:51b51c64-f5b5-4f34-a968-8be175aeac13 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Ubuntu Focal Fossa 20.04 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:edd9074a-3f57-4188-879b-b09fb1ef799e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:19603684-a0d3-4dfd-8a77-71bd3d22b84c] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:2cf37285-57bc-4633-a24f-0c6c825dda66 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:59b790e9-af70-49bc-a0b4-8a6199957064:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:59b790e9-af70-49bc-a0b4-8a6199957064 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Gooroom Platform 2.0 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:ae13ca18-e8bf-431c-a0ce-e6fd0db9e865 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:1e1ccddd-52ac-4ad3-a54b-fb3406f8b5d4] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:9340090e-90ca-11ea-ab10-2e858157d830 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:60daf2bb-1409-4521-8fd8-b3e84c971814:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:60daf2bb-1409-4521-8fd8-b3e84c971814 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 8.1 (32-bit). name_label:Windows 8.1 (32-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="25769803776" sr="" type="system"/></provision> import_task:OpaqueRef:fabe21a5-d840-49f5-bd21-1d362facd96e install-methods:cdrom mac_seed:19849b5e-23d8-4651-848c-030609c56062] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:2.5769803776e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:4383f051-cc9e-48d5-99e9-8fa2e979e2d0 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:6353c9eb-378b-48a2-9c6b-e5bb48c47733:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:6353c9eb-378b-48a2-9c6b-e5bb48c47733 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2012 (64-bit). name_label:Windows Server 2012 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:a8cc04e6-aaef-42c3-8d45-b46dbc1293d8 install-methods:cdrom mac_seed:dee5fe3e-4abb-48a9-b90a-43f40419040b] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:83af4ddb-e029-48ff-ba7a-11a23ff99caa vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:69943b6c-fae7-49b6-8c47-125e5d3415c9:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:69943b6c-fae7-49b6-8c47-125e5d3415c9 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Red Hat Enterprise Linux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:427f0706-bf1c-4b7f-9684-53259ec52eb9 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:eae3f3a3-82e1-4027-8d23-d059fdab40b4] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:612863ed-900d-456d-b4b7-38b70915fd1f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:735654b3-dfa1-41e8-a548-ab33bf42046e:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:735654b3-dfa1-41e8-a548-ab33bf42046e installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Rocky Linux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:6ea196eb-ec03-43b1-9aeb-d0899794a5bf install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:f4beae43-668b-426e-b79b-9d8099d3d57a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:6ce77bf9-ab30-4a1a-a757-011b52d89997 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:74d082da-e833-45d1-91c7-98db7c809e09:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:74d082da-e833-45d1-91c7-98db7c809e09 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Bullseye 11 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:0bd9ae76-be8f-431d-9d0f-42a4cb94f0ef install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:1827b8f4-9032-4ba0-ac93-ea03b048dd65] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:bfb0c8e5-e1db-4a32-9d85-757b3de0f19f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:9fa313f0-f93d-42d9-ad5d-24c801f099eb:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:9fa313f0-f93d-42d9-ad5d-24c801f099eb installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:AlmaLinux 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:c7939cc0-915c-42d7-9b09-55e543beee45 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7587a805-3396-4ca6-be87-3265c476559a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:7aa32be8-a06c-4ade-8a1d-49e51e03e9d2 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:a25ec42d-060c-410d-ade3-2b8846404069:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:a25ec42d-060c-410d-ade3-2b8846404069 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Desktop 12 SP4 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:df1c94ad-2548-4b17-b581-a576eaa5f5b5 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:07dda179-1e44-4fa5-ab19-856a952b7494] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:847f7f36-6da8-487d-940d-f0f06939a1b6 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:a6aed9d6-b4df-4978-816a-d20c55b76b11:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:a6aed9d6-b4df-4978-816a-d20c55b76b11 installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Template that allows VM installation from SLES-based distros. To use this template from the CLI, install your VM using vm-install, then watch the virtual display in XenCenter, and fill in the prompts. name_label:SUSE Linux Enterprise Desktop 12 SP3 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:d8aabbf8-0b5a-42fe-863b-6eaea2272e83 install-arch:x86_64 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:3788c138-ef92-40bf-98f4-07a33a68af72] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[arch:x86_64 disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:dda40663-76e5-45dd-a644-7eb0bed6a1f7 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:b91f31d8-aa99-47a2-b83e-e2d7b728b20b:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:b91f31d8-aa99-47a2-b83e-e2d7b728b20b installTime:<nil> memory:map[dynamic:[2.68435456e+08 2.68435456e+08] size:2.68435456e+08 static:[1.34217728e+08 2.68435456e+08]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Debian Jessie 8.0 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:e347e061-18b1-4519-bda4-1288d4f2f43a install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:912dfaf2-0ca3-44eb-bc65-e6fa7600bf67] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:79abf1d8-4b61-4fc3-aafa-58b0ccae48d3 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:c4ca0fad-2043-43c6-beb8-8b21e64e2fc4:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:dc] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:c4ca0fad-2043-43c6-beb8-8b21e64e2fc4 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows 8.1 (64-bit). name_label:Windows 8.1 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="25769803776" sr="" type="system"/></provision> import_task:OpaqueRef:736eeda6-e6ba-4284-bcce-64960351a010 install-methods:cdrom mac_seed:41f948e6-1e26-4903-bc2c-731950705ffa] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:2.5769803776e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:11c46476-bd5c-4d75-9cf0-57fe55343ba3 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:cd0e104a-6cc6-450f-93ec-d0106d6755cb:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:uefi order:cd] coresPerSocket:2 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:cd0e104a-6cc6-450f-93ec-d0106d6755cb installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:Clones of this template will automatically provision their storage when first booted and then reconfigure themselves with the optimal settings for Windows Server 2016 (64-bit). name_label:Windows Server 2016 (64-bit) os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="false" device="0" size="34359738368" sr="" type="system"/></provision> import_task:OpaqueRef:b0042791-7880-40e2-add9-bd6edd5c9ac1 install-methods:cdrom mac_seed:f32740af-b870-4ad4-a5ea-dcb4a92b914a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:false device:0 size:3.4359738368e+10 type:system]] install_methods:[cdrom]] type:VM-template uuid:c15fab79-6cce-4e1f-916f-a64b98ff9e7d vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:cf262868-6222-4801-b32f-8f47a9e4d56d:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:cf262868-6222-4801-b32f-8f47a9e4d56d installTime:<nil> memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.073741824e+09 2.147483648e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:NeoKylin Linux Server 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:121c0b01-09c4-4547-97c9-fc89f94be190 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:82496c88-2964-4b66-a93b-46044cf2ad34] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:7279a78a-4756-4fc3-99f0-3e7694c0319e vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:d97c4833-59d6-4ea2-80b1-d01281ba9665:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:d97c4833-59d6-4ea2-80b1-d01281ba9665 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:CentOS 7 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:cd256c85-ca6d-4985-96bf-8ac5d84cbbdf install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:54a35e53-c7b2-4742-bab2-ce7ec9215d87] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:11fd3dc9-96cc-49af-b091-a2ca7e94c589 vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:dfa459b1-30de-453c-a3a9-2134b9dc7b65:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:dfa459b1-30de-453c-a3a9-2134b9dc7b65 installTime:<nil> memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:Ubuntu Xenial Xerus 16.04 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:bda54f4c-5f0f-4331-80f6-10cc80799975 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:2091b9d1-5adb-44f4-84aa-31aac35fa5df] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:e9763585-f70a-4526-bfcb-822064742e9f vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:dff1569f-76ab-4a27-8219-11f47f5ea71c:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:dff1569f-76ab-4a27-8219-11f47f5ea71c installTime:<nil> memory:map[dynamic:[2.68435456e+08 2.68435456e+08] size:2.68435456e+08 static:[1.34217728e+08 2.68435456e+08]] name_description:Template which allows VM installation from install media name_label:Other install media os_version:<nil> other:map[default_template:true import_task:OpaqueRef:da35b53c-32a7-4ce5-9572-cdf98c147bb9 install-methods:cdrom mac_seed:7e7c7cf2-ff27-4f02-9125-7ba54a108690] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom]] type:VM-template uuid:552bce37-51b2-445d-84f2-5f33fa112d7e vga:cirrus videoram:4 virtualizationMode:hvm] OpaqueRef:e9b2df52-9571-44d9-bdba-784c14b3e84f:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:e9b2df52-9571-44d9-bdba-784c14b3e84f installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:CoreOS os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="8589934592" sr="" type="system"/></provision> import_task:OpaqueRef:4af19810-cc6d-4fb7-bfaf-3d01a6bc6d6b install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a43d8021-595e-4c53-8b4c-4e1c18e87831] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:8.589934592e+09 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:094706dd-5d22-4830-99b7-c710769c9dcc vga:std videoram:8 virtualizationMode:hvm] OpaqueRef:f4c4de5e-4e11-4d09-93c5-c57fa275afd4:map[$VBDs:[] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[] addresses:map[] auto_poweron:false bios_strings:map[] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:OpaqueRef:f4c4de5e-4e11-4d09-93c5-c57fa275afd4 installTime:<nil> memory:map[dynamic:[4.294967296e+09 4.294967296e+09] size:4.294967296e+09 static:[2.147483648e+09 4.294967296e+09]] name_description:To use this template from the CLI, install your VM using vm-install, then set other-config-install-repository to the path to your network repository, e.g. http://<server>/<path> or nfs:server:/<path> name_label:CentOS 8 os_version:<nil> other:map[default_template:true disks:<provision><disk bootable="true" device="0" size="10737418240" sr="" type="system"/></provision> import_task:OpaqueRef:9d984c41-a4ff-44a6-90af-85ffef21ee96 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:de380af2-9d27-4e22-b36e-8647eaeb52a4] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[map[SR: bootable:true device:0 size:1.073741824e+10 type:system]] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:4b6425be-728a-4a2c-8333-0aef209a348b vga:std videoram:8 virtualizationMode:hvm] b99aaaca-f50d-a8e2-25d4-a3f1adba8744:map[$VBDs:[f41a5254-3d7b-95f0-9bcb-92d12fab21bf 8fbf2ac4-84f4-c74c-b3f2-b822e5cbf0c6] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e7422074-978f-1dcc-605b-201bbbc23d87] addresses:map[0/ipv4/0:192.168.3.38 0/ipv6/0:fe80::58b7:79ff:fe4a:cd20] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:b99aaaca-f50d-a8e2-25d4-a3f1adba8744 installTime:<nil> mainIpAddress:192.168.3.38 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:0efa88da-c693-c9ed-927b-eb7f69d67c7a] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] template_info:map[disks:[] install_methods:[cdrom nfs http ftp]] type:VM-template uuid:b99aaaca-f50d-a8e2-25d4-a3f1adba8744 vga:std videoram:8 virtualizationMode:hvm]]: result with error: <nil>: timestamp=2021-12-16T11:11:13.637-0500
2021-12-16T11:11:13.642-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] Found the following objects for type 'client.Template' from xo.getAllObjects: [{Id:6f73645b-80bf-54d5-82a9-72d83b84cba2 Uuid:6f73645b-80bf-54d5-82a9-72d83b84cba2 NameLabel:AMI PoolId:f212dec4-4682-6045-6dae-1fe80229e66f TemplateInfo:{Arch: Disks:[]}}]: timestamp=2021-12-16T11:11:13.642-0500
2021-12-16T11:11:13.643-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:13 [DEBUG] VM params for vm.create map[string]interface {}{"CPUs":2, "VDIs":[]interface {}{}, "VIFs":[]map[string]string{map[string]string{"mac":"", "network":"06e1ffdc-30e9-66f7-f265-992376416c35"}}, "affinityHost":"", "bootAfterCreate":true, "coreOs":false, "cpuCap":interface {}(nil), "cpuWeight":interface {}(nil), "existingDisks":map[string]interface {}{"0":map[string]interface {}{"$SR":"8fd11492-f4b9-762c-1583-373ff9b305e9", "SR":"8fd11492-f4b9-762c-1583-373ff9b305e9", "name_description":"", "name_label":"VM root volume", "size":53687090000, "type":"user"}}, "expNestedHvm":false, "hvmBootFirmware":"bios", "memoryMax":2147484000, "name_description":"", "name_label":"Test", "tags":[]string{}, "template":"6f73645b-80bf-54d5-82a9-72d83b84cba2", "vga":"std", "videoram":8}: timestamp=2021-12-16T11:11:13.643-0500
2021-12-16T11:11:17.043-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [TRACE] Made rpc call `vm.create` with params: map[CPUs:2 VDIs:[] VIFs:[map[mac: network:06e1ffdc-30e9-66f7-f265-992376416c35]] affinityHost: bootAfterCreate:true coreOs:false cpuCap:<nil> cpuWeight:<nil> existingDisks:map[0:map[$SR:8fd11492-f4b9-762c-1583-373ff9b305e9 SR:8fd11492-f4b9-762c-1583-373ff9b305e9 name_description: name_label:VM root volume size:53687090000 type:user]] expNestedHvm:false hvmBootFirmware:bios memoryMax:2147484000 name_description: name_label:Test tags:[] template:6f73645b-80bf-54d5-82a9-72d83b84cba2 vga:std videoram:8] and received 57f2f596-32c7-e82e-378a-e039a0075658: result with error: <nil>: timestamp=2021-12-16T11:11:17.043-0500
2021-12-16T11:11:17.043-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [DEBUG] Waiting for state to become: [Ready]: timestamp=2021-12-16T11:11:17.043-0500
2021-12-16T11:11:17.058-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM]] and received map[0210f0ab-22d6-169e-dc38-e20e12023805:map[$VBDs:[cc03ed10-7ab8-cede-f650-a89d711e1aab a1cbdbe4-ea21-b849-6e15-2546aec53e1c] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e67e0231-c53b-433e-42cf-5ba8a612ccb8] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0210f0ab-22d6-169e-dc38-e20e12023805 installTime:1.611624727e+09 mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:91a9a3d7-80d7-6c09-fc0f-e591b567bea0] power_state:Halted snapshots:[] startDelay:0 startTime:1.63712329e+09 tags:[] type:VM uuid:0210f0ab-22d6-169e-dc38-e20e12023805 vga:std videoram:8 virtualizationMode:hvm] 048f72fc-29ab-02c2-d810-93368fb69c3a:map[$VBDs:[040c03aa-7967-e986-6cf8-4cfb090cf68c 624b339d-d2bd-02b0-e682-f1a91b11b8d2] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[d30f0084-ae9d-c8a4-5429-57ebddca6de4] addresses:map[0/ipv4/0:192.168.1.11 0/ipv6/0:fe80::740e:feff:feb5:809d] auto_poweron:true bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:048f72fc-29ab-02c2-d810-93368fb69c3a installTime:<nil> mainIpAddress:192.168.1.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:11 minor:11 name:Debian GNU/Linux 11 (bullseye) uname:5.10.0-8-amd64] other:map[auto_poweron:true base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:52e47ccd-7484-48fd-a3cd-310e4d67d75f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:05e09501-3c45-4420-7668-630586cd1584 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[XOA 2021.08] type:VM uuid:048f72fc-29ab-02c2-d810-93368fb69c3a vga:std videoram:8 virtualizationMode:hvm] 105f5092-6e49-ddf0-e1af-cac8a8ddb7ee:map[$VBDs:[724e34d5-9379-0ddd-ed54-b09de9139da6 3bbd6df6-800f-0f96-efaf-72cc5894d2dc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[88261157-b603-6e39-dbc3-4e745e6a8753] addresses:map[0/ipv4/0:192.168.3.24 0/ipv6/0:fe80::f4c9:cdff:fe07:c37] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee installTime:1.604541504e+09 mainIpAddress:192.168.3.24 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.07374592e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Tiny os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:8a4624d6-9022-2802-4261-a189904d85a8] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[630621b4-295a-62a9-bb5c-3c66f7b0ca92] startDelay:0 startTime:1.639628858e+09 tags:[] type:VM uuid:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 19d8f18b-41d7-3cf2-35a0-a65011826a4d:map[$VBDs:[1c31bc0f-c518-6c21-0f3e-9e68eae062a5 3e9fadba-8c71-0b0e-8f6c-8b5d5ac7ccff] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[bd6d8458-18e6-2f52-9b7b-b38e5ab85a94] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::b803:e0ff:fe01:16a9] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:19d8f18b-41d7-3cf2-35a0-a65011826a4d installTime:1.613068062e+09 mainIpAddress:192.168.3.111 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Bind Jenkins Prometheus os_version:map[] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d36e991c-8f11-833f-9723-824005d117e3] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.63962885e+09 tags:[] type:VM uuid:19d8f18b-41d7-3cf2-35a0-a65011826a4d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 2a75143d-013d-24e3-6987-de285d5c4400:map[$VBDs:[2587ed45-675c-170b-ea29-6cfa191bcc51 65c4344f-bf0f-c1a1-128f-47c749f6fdb6 969643e7-7db7-bbf7-a678-9361c26daa91 539ca856-ee96-d94e-1f83-3322b515b61e 9c2fcb21-d667-b683-cf6a-96f38a4cf2cb 8a2797a0-77fa-037e-f0b5-49eabadee22c efc5400b-c109-43ef-ff33-426a1e7b0ce2 3c641b2a-e4de-f85a-09f4-264aed40a394] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b1f00623-3632-593e-b4b4-0ee8e18819d9] addresses:map[0/ipv4/0:192.168.3.79 0/ipv6/0:fe80::a077:16ff:fe53:96e3] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:2a75143d-013d-24e3-6987-de285d5c4400 installTime:1.618107996e+09 mainIpAddress:192.168.3.79 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Host-test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7689a1b7-756a-913a-5aa7-a0533c40ac70] power_state:Halted snapshots:[4830be8e-9159-049f-ee7d-c0aa9a225ee4 403fe925-0b0d-7ac0-4ce7-549f10c6bf99] startDelay:0 startTime:1.629412229e+09 tags:[] type:VM uuid:2a75143d-013d-24e3-6987-de285d5c4400 vga:std videoram:8 virtualizationMode:hvm] 408592b2-694a-b671-d4a3-82c19bde3903:map[$VBDs:[285d8c21-883a-2b38-2c4a-a987ee19f1b3 c035dd37-c1d1-a487-77df-a9c8e46cc9b5 99760672-219d-c9b2-312a-81173ccdd226 3873aaaf-1651-92c0-5054-c6c3079d32c5 ff823849-e776-efb3-40de-272f6a30c2fc 29c53819-fc24-1900-47de-c4e50888994c 8eb0bb48-4bd8-43ca-df31-d6ae09a894a9 ae503c5d-c57b-2b8b-bc51-8b34d4b9f6c0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[fdf4167c-1793-1659-7392-015c0c46fd34] addresses:map[0/ipv4/0:192.168.3.78 0/ipv6/0:fe80::f406:dcff:fec4:8f68] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:408592b2-694a-b671-d4a3-82c19bde3903 installTime:1.618108074e+09 mainIpAddress:192.168.3.78 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Cert test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:205e1952-13ae-c38f-f8be-e45d89c3a3db] power_state:Halted snapshots:[7f43cd67-5fd2-10ea-c91c-26e181f718fc] startDelay:0 startTime:1.639623638e+09 tags:[] type:VM uuid:408592b2-694a-b671-d4a3-82c19bde3903 vga:std videoram:8 virtualizationMode:hvm] 57f2f596-32c7-e82e-378a-e039a0075658:map[$VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:57f2f596-32c7-e82e-378a-e039a0075658 installTime:1.639671075e+09 mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Test os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:587d8953-04d7-2cb5-c77d-f5dc73fe8266] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:57f2f596-32c7-e82e-378a-e039a0075658 vga:std videoram:8 virtualizationMode:hvm] 65faba2e-94de-fd62-ee76-044e9da2e50d:map[$VBDs:[38b066cd-2ecd-e1b1-f867-19e5831e284b adb06f7d-3242-816e-7fc4-71e709fc7fc4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a bae03704-fc2c-d0a9-b300-8cae1b77a858 48880504-edb5-b6cb-b78f-a0561720196c af630cc2-f952-c4c6-5649-1085e965a1f0 f3594756-763c-6ad0-6c0b-7fd61f210ee0 26fad0d5-95e8-3a78-3cab-56902d939881 e2f92181-06af-5bd9-1690-df238e58227c] addresses:map[0/ipv4/0:192.168.1.150 1/ipv4/0:192.168.0.45 2/ipv4/0:192.168.3.1 3/ipv4/0: 4/ipv4/0: 5/ipv4/0: 6/ipv4/0:] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:65faba2e-94de-fd62-ee76-044e9da2e50d installTime:1.63863235e+09 mainIpAddress:192.168.1.150 managementAgentDetected:true memory:map[dynamic:[2.68435456e+08 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description: name_label:Pfsense os_version:map[distro:FreeBSD name:FreeBSD 12.2-STABLE uname:12.2-STABLE] other:map[auto_poweron:true base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:aa51b64b-1fc9-4b99-ab38-52000b5b17e6 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:92b6f3da-6d1e-ef72-89fe-163b37eb534d] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:6.2 snapshots:[770ce00f-df09-5f68-0bff-4fb108421a1d 8cbeb2c5-c057-45df-396c-3a0c2c1f709f] startDelay:0 startTime:1.639654874e+09 tags:[] type:VM uuid:65faba2e-94de-fd62-ee76-044e9da2e50d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:6 minor:2 version:6.2]] 85ea1b49-87df-8f14-5067-087b69164424:map[$VBDs:[6ac5e484-56e4-b8a7-0011-b6c60551b8f7 c4418a00-3aac-3554-3066-b0613354560e] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[53f7d501-2ce5-be27-8d7f-bbfd97812a67] addresses:map[0/ipv4/0:192.168.3.10 0/ipv6/0:fe80::b848:a4ff:febd:c0c0] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:4 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:85ea1b49-87df-8f14-5067-087b69164424 installTime:1.591902262e+09 mainIpAddress:192.168.3.10 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.44245504e+09 static:[5.36870912e+08 6.442450944e+09]] name_description: name_label:Matrix & Jitsi os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:04cab5d4-bf8f-146d-91c5-b562bccc00b0] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[2ba2ac92-e30a-bc99-c6ec-63240ae275b3 d114b5fd-8b4d-cb5b-4664-eaed7195fa8e 4cdc6cc2-9b82-3022-3551-24bc3fa74d68 aa4b0c66-b42c-4872-46de-c0e597e00f55 8484e91e-4eee-b143-f619-4d08c24ee090] startDelay:0 startTime:1.639628863e+09 tags:[] type:VM uuid:85ea1b49-87df-8f14-5067-087b69164424 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 9c2632dc-4424-bbd4-b4be-e0787aab713f:map[$VBDs:[bf0ba9ff-df19-c6e0-541b-418a4d54b639 318b58f7-c7e0-7665-d36a-7075e1ad2bc0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[996d7fa5-42fe-37fb-81e6-ac9dd3fece17] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:9c2632dc-4424-bbd4-b4be-e0787aab713f installTime:1.62934031e+09 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Debian Buster 10 os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:b1f9b815-c847-4567-a58a-d073910dd135 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d0fcf6ec-2344-a934-6f89-388c6c3652f6] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:9c2632dc-4424-bbd4-b4be-e0787aab713f vga:std videoram:8 virtualizationMode:hvm] a6934a4a-6930-b757-87f8-16c1caa5c2ab:map[$VBDs:[6f1befd2-22eb-afa5-aaf9-98de219978b4 ff349489-259c-c561-7726-d3ad850e07fa] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:1] VGPUs:[] VIFs:[766d7214-3e35-110e-b178-2820b0f98009] addresses:map[0/ipv4/0:192.168.3.31 0/ipv6/0:fe80::7482:7bff:fee6:c9f2] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a6934a4a-6930-b757-87f8-16c1caa5c2ab installTime:1.607773001e+09 mainIpAddress:192.168.3.31 memory:map[dynamic:[1.073741824e+09 1.073742e+09] size:1.073742e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Ldap os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d240f9c7-1a2a-d21f-8143-450760f07262] power_state:Halted snapshots:[] startDelay:0 startTime:1.63707986e+09 tags:[] type:VM uuid:a6934a4a-6930-b757-87f8-16c1caa5c2ab vga:std videoram:8 virtualizationMode:hvm] a981c3b3-3e2f-4144-ef85-706e2df5bf54:map[$VBDs:[33c3d709-227a-f015-b8ed-77838be694dd fded2bfc-25e7-1005-5cde-6f5b3d5da000] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[5ae724a1-7807-a6ca-838d-7c97f077a00d] addresses:map[0/ipv4/0:192.168.10.11 0/ipv6/0:fe80::8838:50ff:fe45:6095] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a981c3b3-3e2f-4144-ef85-706e2df5bf54 installTime:<nil> mainIpAddress:192.168.10.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:c981d0c1-fdcc-4d23-a1da-1b02afa9ba8e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:327605af-e6a1-9208-f6da-160c7d727bc8 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[2021.01 XOA] type:VM uuid:a981c3b3-3e2f-4144-ef85-706e2df5bf54 vga:cirrus videoram:8 virtualizationMode:hvm] cdf04491-f6cf-91a6-8413-b3503c09e689:map[$VBDs:[487e79c1-55ef-b61c-83b0-dc5c2d57a985 838a66ca-c7aa-c6ce-624c-9006e273ac4f] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[b2fb8066-358b-1b1f-c3d9-9a1ab38337d7] addresses:map[0/ipv6/0:fe80::543a:8aff:fecd:204b] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:cdf04491-f6cf-91a6-8413-b3503c09e689 installTime:1.599674355e+09 mainIpAddress:fe80::543a:8aff:fecd:204b memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294967296e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri Test os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-10-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a003cf92-2559-aa46-07ce-f4f2889d18b0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:cdf04491-f6cf-91a6-8413-b3503c09e689 vga:std videoram:8 virtualizationMode:hvm] dd1362c6-fcc9-3014-e9d9-d673ad99d53f:map[$VBDs:[9cbe448c-cef1-3a32-8687-09494007060a c9aebc62-11e8-27d7-8497-bd1cde87f0a0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[309a26f4-b1a7-95eb-7038-690acde42a23] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::80ab:ceff:fe1c:3f75] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:dd1362c6-fcc9-3014-e9d9-d673ad99d53f installTime:1.609861939e+09 mainIpAddress:192.168.3.111 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Ubuntu  os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-73-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:20739ac2-5dfa-baa7-6607-ce811c0432c2] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:dd1362c6-fcc9-3014-e9d9-d673ad99d53f vga:std videoram:8 virtualizationMode:hvm] e04ae8d3-c9ef-770f-9553-7261771acd1d:map[$VBDs:[b65b685f-97a7-39e4-61cd-91e4bfb1f72c 41835946-fad4-90ae-68c8-44d02d373fdc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::dc5d:4cff:fe08:5714] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e04ae8d3-c9ef-770f-9553-7261771acd1d installTime:1.639663733e+09 mainIpAddress:192.168.3.76 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Proxy os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29ded3ec-697f-cdb4-8cf1-ed8b5aef6db6] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.639663734e+09 tags:[] type:VM uuid:e04ae8d3-c9ef-770f-9553-7261771acd1d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] e0dad53d-8d06-4663-9e65-324651ec4609:map[$VBDs:[ee3758ed-ca9e-c7b4-19e7-82cf996956f1 26d91313-b5e1-6379-eb3d-8e32c3d47fd4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:8 number:2] VGPUs:[] VIFs:[94e97171-451f-db1f-05e1-e11c2d883796 d098275e-ddf4-aea3-48ec-0674942abf17] addresses:map[1/ipv4/0:192.168.3.100 1/ipv6/0:fe80::d092:6ff:fe6d:68 2/ipv4/0:192.168.10.10 2/ipv6/0:fe80::d490:58ff:fe1b:c0b2] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e0dad53d-8d06-4663-9e65-324651ec4609 installTime:1.591575208e+09 mainIpAddress:192.168.3.100 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 4.294967296e+09]] name_description:Xen Orchestra community edition name_label:XOA-C os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:14dc415f-e59d-b054-84cd-8e12726dd12f] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[053b017d-cd15-8cc4-b3a8-1aa9186df470] startDelay:0 startTime:1.639628847e+09 tags:[XOA] type:VM uuid:e0dad53d-8d06-4663-9e65-324651ec4609 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] ed3f4be7-8edb-9494-dc0c-d280ee0d7168:map[$VBDs:[27693556-c2d5-d02b-45c5-a96b03a48963 41ac3987-1a95-9b1a-51d2-9ae093becc33 74a23937-fa0c-1019-3214-d9154f9560db 4f90c0b3-11bc-5f7f-f993-e244b829aa58 46f1f50d-c4b0-4ac0-63ca-8e5284048841 3bf5ca37-3b62-24f2-e882-e1767176b655 42b64cea-abae-bddb-9ee8-176200d031ac 7a47e006-fd71-9b18-0e34-c85b4ef6c745] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b4c23d16-2de9-b905-7e6e-9f35a334a436] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 installTime:1.621891336e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Backup test os_version:map[] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ea74ecc3-0c68-5d41-8054-2468a3015bba] power_state:Halted snapshots:[5b079275-22f3-a741-7257-dc324c4d4757 fb13a667-a42a-160c-0555-255d464bedaf] startDelay:0 startTime:<nil> tags:[] type:VM uuid:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 vga:std videoram:8 virtualizationMode:hvm] faa6312a-e63b-647a-aefd-b7fb19faa462:map[$VBDs:[e5aba2b0-368f-3b69-3051-f59d419e732b 24ffb7f0-ff4c-8550-fc63-effaf5334750] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[3e92b66b-8237-72fd-6c80-4fff3eeb5c3e] addresses:map[0/ipv4/0:192.168.3.18 0/ipv6/0:fe80::67:37ff:fe89:d207] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:faa6312a-e63b-647a-aefd-b7fb19faa462 installTime:1.60755664e+09 mainIpAddress:192.168.3.18 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294971392e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e95be6b6-f7a0-4495-6b4c-5a0ffdb27cbd] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[f225f0db-9f30-ade1-2512-8d87d06b233c] startDelay:0 startTime:1.63962886e+09 tags:[] type:VM uuid:faa6312a-e63b-647a-aefd-b7fb19faa462 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]]]: result with error: <nil>: timestamp=2021-12-16T11:11:17.056-0500
2021-12-16T11:11:17.062-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [DEBUG] Found the following objects for type 'client.Vm' from xo.getAllObjects: [{Addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147484000} PowerState:Halted VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:f212dec4-4682-6045-6dae-1fe80229e66f Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}]: timestamp=2021-12-16T11:11:17.061-0500
2021-12-16T11:11:17.062-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [DEBUG] Found vm: {Addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147484000} PowerState:Halted VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:f212dec4-4682-6045-6dae-1fe80229e66f Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}: timestamp=2021-12-16T11:11:17.062-0500
2021-12-16T11:11:17.062-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [TRACE] Waiting 200ms before next try: timestamp=2021-12-16T11:11:17.062-0500
2021-12-16T11:11:17.272-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM]] and received map[0210f0ab-22d6-169e-dc38-e20e12023805:map[$VBDs:[cc03ed10-7ab8-cede-f650-a89d711e1aab a1cbdbe4-ea21-b849-6e15-2546aec53e1c] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e67e0231-c53b-433e-42cf-5ba8a612ccb8] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0210f0ab-22d6-169e-dc38-e20e12023805 installTime:1.611624727e+09 mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:91a9a3d7-80d7-6c09-fc0f-e591b567bea0] power_state:Halted snapshots:[] startDelay:0 startTime:1.63712329e+09 tags:[] type:VM uuid:0210f0ab-22d6-169e-dc38-e20e12023805 vga:std videoram:8 virtualizationMode:hvm] 048f72fc-29ab-02c2-d810-93368fb69c3a:map[$VBDs:[040c03aa-7967-e986-6cf8-4cfb090cf68c 624b339d-d2bd-02b0-e682-f1a91b11b8d2] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[d30f0084-ae9d-c8a4-5429-57ebddca6de4] addresses:map[0/ipv4/0:192.168.1.11 0/ipv6/0:fe80::740e:feff:feb5:809d] auto_poweron:true bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:048f72fc-29ab-02c2-d810-93368fb69c3a installTime:<nil> mainIpAddress:192.168.1.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:11 minor:11 name:Debian GNU/Linux 11 (bullseye) uname:5.10.0-8-amd64] other:map[auto_poweron:true base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:52e47ccd-7484-48fd-a3cd-310e4d67d75f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:05e09501-3c45-4420-7668-630586cd1584 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[XOA 2021.08] type:VM uuid:048f72fc-29ab-02c2-d810-93368fb69c3a vga:std videoram:8 virtualizationMode:hvm] 105f5092-6e49-ddf0-e1af-cac8a8ddb7ee:map[$VBDs:[724e34d5-9379-0ddd-ed54-b09de9139da6 3bbd6df6-800f-0f96-efaf-72cc5894d2dc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[88261157-b603-6e39-dbc3-4e745e6a8753] addresses:map[0/ipv4/0:192.168.3.24 0/ipv6/0:fe80::f4c9:cdff:fe07:c37] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee installTime:1.604541504e+09 mainIpAddress:192.168.3.24 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.07374592e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Tiny os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:8a4624d6-9022-2802-4261-a189904d85a8] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[630621b4-295a-62a9-bb5c-3c66f7b0ca92] startDelay:0 startTime:1.639628858e+09 tags:[] type:VM uuid:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 19d8f18b-41d7-3cf2-35a0-a65011826a4d:map[$VBDs:[1c31bc0f-c518-6c21-0f3e-9e68eae062a5 3e9fadba-8c71-0b0e-8f6c-8b5d5ac7ccff] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[bd6d8458-18e6-2f52-9b7b-b38e5ab85a94] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::b803:e0ff:fe01:16a9] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:19d8f18b-41d7-3cf2-35a0-a65011826a4d installTime:1.613068062e+09 mainIpAddress:192.168.3.111 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Bind Jenkins Prometheus os_version:map[] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d36e991c-8f11-833f-9723-824005d117e3] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.63962885e+09 tags:[] type:VM uuid:19d8f18b-41d7-3cf2-35a0-a65011826a4d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 2a75143d-013d-24e3-6987-de285d5c4400:map[$VBDs:[2587ed45-675c-170b-ea29-6cfa191bcc51 65c4344f-bf0f-c1a1-128f-47c749f6fdb6 969643e7-7db7-bbf7-a678-9361c26daa91 539ca856-ee96-d94e-1f83-3322b515b61e 9c2fcb21-d667-b683-cf6a-96f38a4cf2cb 8a2797a0-77fa-037e-f0b5-49eabadee22c efc5400b-c109-43ef-ff33-426a1e7b0ce2 3c641b2a-e4de-f85a-09f4-264aed40a394] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b1f00623-3632-593e-b4b4-0ee8e18819d9] addresses:map[0/ipv4/0:192.168.3.79 0/ipv6/0:fe80::a077:16ff:fe53:96e3] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:2a75143d-013d-24e3-6987-de285d5c4400 installTime:1.618107996e+09 mainIpAddress:192.168.3.79 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Host-test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7689a1b7-756a-913a-5aa7-a0533c40ac70] power_state:Halted snapshots:[4830be8e-9159-049f-ee7d-c0aa9a225ee4 403fe925-0b0d-7ac0-4ce7-549f10c6bf99] startDelay:0 startTime:1.629412229e+09 tags:[] type:VM uuid:2a75143d-013d-24e3-6987-de285d5c4400 vga:std videoram:8 virtualizationMode:hvm] 408592b2-694a-b671-d4a3-82c19bde3903:map[$VBDs:[285d8c21-883a-2b38-2c4a-a987ee19f1b3 c035dd37-c1d1-a487-77df-a9c8e46cc9b5 99760672-219d-c9b2-312a-81173ccdd226 3873aaaf-1651-92c0-5054-c6c3079d32c5 ff823849-e776-efb3-40de-272f6a30c2fc 29c53819-fc24-1900-47de-c4e50888994c 8eb0bb48-4bd8-43ca-df31-d6ae09a894a9 ae503c5d-c57b-2b8b-bc51-8b34d4b9f6c0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[fdf4167c-1793-1659-7392-015c0c46fd34] addresses:map[0/ipv4/0:192.168.3.78 0/ipv6/0:fe80::f406:dcff:fec4:8f68] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:408592b2-694a-b671-d4a3-82c19bde3903 installTime:1.618108074e+09 mainIpAddress:192.168.3.78 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Cert test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:205e1952-13ae-c38f-f8be-e45d89c3a3db] power_state:Halted snapshots:[7f43cd67-5fd2-10ea-c91c-26e181f718fc] startDelay:0 startTime:1.639623638e+09 tags:[] type:VM uuid:408592b2-694a-b671-d4a3-82c19bde3903 vga:std videoram:8 virtualizationMode:hvm] 57f2f596-32c7-e82e-378a-e039a0075658:map[$VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[2fea095a-ac4b-2f0f-195c-83bf6c368a15:start] expNestedHvm:false hasVendorDevice:false high_availability: id:57f2f596-32c7-e82e-378a-e039a0075658 installTime:1.639671075e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Test os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:587d8953-04d7-2cb5-c77d-f5dc73fe8266] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:57f2f596-32c7-e82e-378a-e039a0075658 vga:std videoram:8 virtualizationMode:hvm] 65faba2e-94de-fd62-ee76-044e9da2e50d:map[$VBDs:[38b066cd-2ecd-e1b1-f867-19e5831e284b adb06f7d-3242-816e-7fc4-71e709fc7fc4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a bae03704-fc2c-d0a9-b300-8cae1b77a858 48880504-edb5-b6cb-b78f-a0561720196c af630cc2-f952-c4c6-5649-1085e965a1f0 f3594756-763c-6ad0-6c0b-7fd61f210ee0 26fad0d5-95e8-3a78-3cab-56902d939881 e2f92181-06af-5bd9-1690-df238e58227c] addresses:map[0/ipv4/0:192.168.1.150 1/ipv4/0:192.168.0.45 2/ipv4/0:192.168.3.1 3/ipv4/0: 4/ipv4/0: 5/ipv4/0: 6/ipv4/0:] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:65faba2e-94de-fd62-ee76-044e9da2e50d installTime:1.63863235e+09 mainIpAddress:192.168.1.150 managementAgentDetected:true memory:map[dynamic:[2.68435456e+08 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description: name_label:Pfsense os_version:map[distro:FreeBSD name:FreeBSD 12.2-STABLE uname:12.2-STABLE] other:map[auto_poweron:true base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:aa51b64b-1fc9-4b99-ab38-52000b5b17e6 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:92b6f3da-6d1e-ef72-89fe-163b37eb534d] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:6.2 snapshots:[770ce00f-df09-5f68-0bff-4fb108421a1d 8cbeb2c5-c057-45df-396c-3a0c2c1f709f] startDelay:0 startTime:1.639654874e+09 tags:[] type:VM uuid:65faba2e-94de-fd62-ee76-044e9da2e50d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:6 minor:2 version:6.2]] 85ea1b49-87df-8f14-5067-087b69164424:map[$VBDs:[6ac5e484-56e4-b8a7-0011-b6c60551b8f7 c4418a00-3aac-3554-3066-b0613354560e] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[53f7d501-2ce5-be27-8d7f-bbfd97812a67] addresses:map[0/ipv4/0:192.168.3.10 0/ipv6/0:fe80::b848:a4ff:febd:c0c0] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:4 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:85ea1b49-87df-8f14-5067-087b69164424 installTime:1.591902262e+09 mainIpAddress:192.168.3.10 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.44245504e+09 static:[5.36870912e+08 6.442450944e+09]] name_description: name_label:Matrix & Jitsi os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:04cab5d4-bf8f-146d-91c5-b562bccc00b0] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[2ba2ac92-e30a-bc99-c6ec-63240ae275b3 d114b5fd-8b4d-cb5b-4664-eaed7195fa8e 4cdc6cc2-9b82-3022-3551-24bc3fa74d68 aa4b0c66-b42c-4872-46de-c0e597e00f55 8484e91e-4eee-b143-f619-4d08c24ee090] startDelay:0 startTime:1.639628863e+09 tags:[] type:VM uuid:85ea1b49-87df-8f14-5067-087b69164424 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 9c2632dc-4424-bbd4-b4be-e0787aab713f:map[$VBDs:[bf0ba9ff-df19-c6e0-541b-418a4d54b639 318b58f7-c7e0-7665-d36a-7075e1ad2bc0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[996d7fa5-42fe-37fb-81e6-ac9dd3fece17] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:9c2632dc-4424-bbd4-b4be-e0787aab713f installTime:1.62934031e+09 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Debian Buster 10 os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:b1f9b815-c847-4567-a58a-d073910dd135 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d0fcf6ec-2344-a934-6f89-388c6c3652f6] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:9c2632dc-4424-bbd4-b4be-e0787aab713f vga:std videoram:8 virtualizationMode:hvm] a6934a4a-6930-b757-87f8-16c1caa5c2ab:map[$VBDs:[6f1befd2-22eb-afa5-aaf9-98de219978b4 ff349489-259c-c561-7726-d3ad850e07fa] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:1] VGPUs:[] VIFs:[766d7214-3e35-110e-b178-2820b0f98009] addresses:map[0/ipv4/0:192.168.3.31 0/ipv6/0:fe80::7482:7bff:fee6:c9f2] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a6934a4a-6930-b757-87f8-16c1caa5c2ab installTime:1.607773001e+09 mainIpAddress:192.168.3.31 memory:map[dynamic:[1.073741824e+09 1.073742e+09] size:1.073742e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Ldap os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d240f9c7-1a2a-d21f-8143-450760f07262] power_state:Halted snapshots:[] startDelay:0 startTime:1.63707986e+09 tags:[] type:VM uuid:a6934a4a-6930-b757-87f8-16c1caa5c2ab vga:std videoram:8 virtualizationMode:hvm] a981c3b3-3e2f-4144-ef85-706e2df5bf54:map[$VBDs:[33c3d709-227a-f015-b8ed-77838be694dd fded2bfc-25e7-1005-5cde-6f5b3d5da000] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[5ae724a1-7807-a6ca-838d-7c97f077a00d] addresses:map[0/ipv4/0:192.168.10.11 0/ipv6/0:fe80::8838:50ff:fe45:6095] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a981c3b3-3e2f-4144-ef85-706e2df5bf54 installTime:<nil> mainIpAddress:192.168.10.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:c981d0c1-fdcc-4d23-a1da-1b02afa9ba8e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:327605af-e6a1-9208-f6da-160c7d727bc8 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[2021.01 XOA] type:VM uuid:a981c3b3-3e2f-4144-ef85-706e2df5bf54 vga:cirrus videoram:8 virtualizationMode:hvm] cdf04491-f6cf-91a6-8413-b3503c09e689:map[$VBDs:[487e79c1-55ef-b61c-83b0-dc5c2d57a985 838a66ca-c7aa-c6ce-624c-9006e273ac4f] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[b2fb8066-358b-1b1f-c3d9-9a1ab38337d7] addresses:map[0/ipv6/0:fe80::543a:8aff:fecd:204b] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:cdf04491-f6cf-91a6-8413-b3503c09e689 installTime:1.599674355e+09 mainIpAddress:fe80::543a:8aff:fecd:204b memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294967296e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri Test os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-10-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a003cf92-2559-aa46-07ce-f4f2889d18b0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:cdf04491-f6cf-91a6-8413-b3503c09e689 vga:std videoram:8 virtualizationMode:hvm] dd1362c6-fcc9-3014-e9d9-d673ad99d53f:map[$VBDs:[9cbe448c-cef1-3a32-8687-09494007060a c9aebc62-11e8-27d7-8497-bd1cde87f0a0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[309a26f4-b1a7-95eb-7038-690acde42a23] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::80ab:ceff:fe1c:3f75] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:dd1362c6-fcc9-3014-e9d9-d673ad99d53f installTime:1.609861939e+09 mainIpAddress:192.168.3.111 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Ubuntu  os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-73-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:20739ac2-5dfa-baa7-6607-ce811c0432c2] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:dd1362c6-fcc9-3014-e9d9-d673ad99d53f vga:std videoram:8 virtualizationMode:hvm] e04ae8d3-c9ef-770f-9553-7261771acd1d:map[$VBDs:[b65b685f-97a7-39e4-61cd-91e4bfb1f72c 41835946-fad4-90ae-68c8-44d02d373fdc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::dc5d:4cff:fe08:5714] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e04ae8d3-c9ef-770f-9553-7261771acd1d installTime:1.639663733e+09 mainIpAddress:192.168.3.76 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Proxy os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29ded3ec-697f-cdb4-8cf1-ed8b5aef6db6] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.639663734e+09 tags:[] type:VM uuid:e04ae8d3-c9ef-770f-9553-7261771acd1d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] e0dad53d-8d06-4663-9e65-324651ec4609:map[$VBDs:[ee3758ed-ca9e-c7b4-19e7-82cf996956f1 26d91313-b5e1-6379-eb3d-8e32c3d47fd4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:8 number:2] VGPUs:[] VIFs:[94e97171-451f-db1f-05e1-e11c2d883796 d098275e-ddf4-aea3-48ec-0674942abf17] addresses:map[1/ipv4/0:192.168.3.100 1/ipv6/0:fe80::d092:6ff:fe6d:68 2/ipv4/0:192.168.10.10 2/ipv6/0:fe80::d490:58ff:fe1b:c0b2] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e0dad53d-8d06-4663-9e65-324651ec4609 installTime:1.591575208e+09 mainIpAddress:192.168.3.100 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 4.294967296e+09]] name_description:Xen Orchestra community edition name_label:XOA-C os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:14dc415f-e59d-b054-84cd-8e12726dd12f] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[053b017d-cd15-8cc4-b3a8-1aa9186df470] startDelay:0 startTime:1.639628847e+09 tags:[XOA] type:VM uuid:e0dad53d-8d06-4663-9e65-324651ec4609 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] ed3f4be7-8edb-9494-dc0c-d280ee0d7168:map[$VBDs:[27693556-c2d5-d02b-45c5-a96b03a48963 41ac3987-1a95-9b1a-51d2-9ae093becc33 74a23937-fa0c-1019-3214-d9154f9560db 4f90c0b3-11bc-5f7f-f993-e244b829aa58 46f1f50d-c4b0-4ac0-63ca-8e5284048841 3bf5ca37-3b62-24f2-e882-e1767176b655 42b64cea-abae-bddb-9ee8-176200d031ac 7a47e006-fd71-9b18-0e34-c85b4ef6c745] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b4c23d16-2de9-b905-7e6e-9f35a334a436] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 installTime:1.621891336e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Backup test os_version:map[] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ea74ecc3-0c68-5d41-8054-2468a3015bba] power_state:Halted snapshots:[5b079275-22f3-a741-7257-dc324c4d4757 fb13a667-a42a-160c-0555-255d464bedaf] startDelay:0 startTime:<nil> tags:[] type:VM uuid:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 vga:std videoram:8 virtualizationMode:hvm] faa6312a-e63b-647a-aefd-b7fb19faa462:map[$VBDs:[e5aba2b0-368f-3b69-3051-f59d419e732b 24ffb7f0-ff4c-8550-fc63-effaf5334750] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[3e92b66b-8237-72fd-6c80-4fff3eeb5c3e] addresses:map[0/ipv4/0:192.168.3.18 0/ipv6/0:fe80::67:37ff:fe89:d207] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:faa6312a-e63b-647a-aefd-b7fb19faa462 installTime:1.60755664e+09 mainIpAddress:192.168.3.18 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294971392e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e95be6b6-f7a0-4495-6b4c-5a0ffdb27cbd] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[f225f0db-9f30-ade1-2512-8d87d06b233c] startDelay:0 startTime:1.63962886e+09 tags:[] type:VM uuid:faa6312a-e63b-647a-aefd-b7fb19faa462 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]]]: result with error: <nil>: timestamp=2021-12-16T11:11:17.271-0500
2021-12-16T11:11:17.275-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [DEBUG] Found the following objects for type 'client.Vm' from xo.getAllObjects: [{Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147484000} PowerState:Halted VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:f212dec4-4682-6045-6dae-1fe80229e66f Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}]: timestamp=2021-12-16T11:11:17.274-0500
2021-12-16T11:11:17.275-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [DEBUG] Found vm: {Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147484000} PowerState:Halted VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:f212dec4-4682-6045-6dae-1fe80229e66f Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}: timestamp=2021-12-16T11:11:17.274-0500
2021-12-16T11:11:17.275-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [TRACE] Waiting 400ms before next try: timestamp=2021-12-16T11:11:17.275-0500
2021-12-16T11:11:17.692-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM]] and received map[0210f0ab-22d6-169e-dc38-e20e12023805:map[$VBDs:[cc03ed10-7ab8-cede-f650-a89d711e1aab a1cbdbe4-ea21-b849-6e15-2546aec53e1c] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e67e0231-c53b-433e-42cf-5ba8a612ccb8] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0210f0ab-22d6-169e-dc38-e20e12023805 installTime:1.611624727e+09 mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:91a9a3d7-80d7-6c09-fc0f-e591b567bea0] power_state:Halted snapshots:[] startDelay:0 startTime:1.63712329e+09 tags:[] type:VM uuid:0210f0ab-22d6-169e-dc38-e20e12023805 vga:std videoram:8 virtualizationMode:hvm] 048f72fc-29ab-02c2-d810-93368fb69c3a:map[$VBDs:[040c03aa-7967-e986-6cf8-4cfb090cf68c 624b339d-d2bd-02b0-e682-f1a91b11b8d2] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[d30f0084-ae9d-c8a4-5429-57ebddca6de4] addresses:map[0/ipv4/0:192.168.1.11 0/ipv6/0:fe80::740e:feff:feb5:809d] auto_poweron:true bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:048f72fc-29ab-02c2-d810-93368fb69c3a installTime:<nil> mainIpAddress:192.168.1.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:11 minor:11 name:Debian GNU/Linux 11 (bullseye) uname:5.10.0-8-amd64] other:map[auto_poweron:true base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:52e47ccd-7484-48fd-a3cd-310e4d67d75f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:05e09501-3c45-4420-7668-630586cd1584 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[XOA 2021.08] type:VM uuid:048f72fc-29ab-02c2-d810-93368fb69c3a vga:std videoram:8 virtualizationMode:hvm] 105f5092-6e49-ddf0-e1af-cac8a8ddb7ee:map[$VBDs:[724e34d5-9379-0ddd-ed54-b09de9139da6 3bbd6df6-800f-0f96-efaf-72cc5894d2dc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[88261157-b603-6e39-dbc3-4e745e6a8753] addresses:map[0/ipv4/0:192.168.3.24 0/ipv6/0:fe80::f4c9:cdff:fe07:c37] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee installTime:1.604541504e+09 mainIpAddress:192.168.3.24 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.07374592e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Tiny os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:8a4624d6-9022-2802-4261-a189904d85a8] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[630621b4-295a-62a9-bb5c-3c66f7b0ca92] startDelay:0 startTime:1.639628858e+09 tags:[] type:VM uuid:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 19d8f18b-41d7-3cf2-35a0-a65011826a4d:map[$VBDs:[1c31bc0f-c518-6c21-0f3e-9e68eae062a5 3e9fadba-8c71-0b0e-8f6c-8b5d5ac7ccff] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[bd6d8458-18e6-2f52-9b7b-b38e5ab85a94] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::b803:e0ff:fe01:16a9] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:19d8f18b-41d7-3cf2-35a0-a65011826a4d installTime:1.613068062e+09 mainIpAddress:192.168.3.111 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Bind Jenkins Prometheus os_version:map[] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d36e991c-8f11-833f-9723-824005d117e3] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.63962885e+09 tags:[] type:VM uuid:19d8f18b-41d7-3cf2-35a0-a65011826a4d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 2a75143d-013d-24e3-6987-de285d5c4400:map[$VBDs:[2587ed45-675c-170b-ea29-6cfa191bcc51 65c4344f-bf0f-c1a1-128f-47c749f6fdb6 969643e7-7db7-bbf7-a678-9361c26daa91 539ca856-ee96-d94e-1f83-3322b515b61e 9c2fcb21-d667-b683-cf6a-96f38a4cf2cb 8a2797a0-77fa-037e-f0b5-49eabadee22c efc5400b-c109-43ef-ff33-426a1e7b0ce2 3c641b2a-e4de-f85a-09f4-264aed40a394] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b1f00623-3632-593e-b4b4-0ee8e18819d9] addresses:map[0/ipv4/0:192.168.3.79 0/ipv6/0:fe80::a077:16ff:fe53:96e3] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:2a75143d-013d-24e3-6987-de285d5c4400 installTime:1.618107996e+09 mainIpAddress:192.168.3.79 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Host-test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7689a1b7-756a-913a-5aa7-a0533c40ac70] power_state:Halted snapshots:[4830be8e-9159-049f-ee7d-c0aa9a225ee4 403fe925-0b0d-7ac0-4ce7-549f10c6bf99] startDelay:0 startTime:1.629412229e+09 tags:[] type:VM uuid:2a75143d-013d-24e3-6987-de285d5c4400 vga:std videoram:8 virtualizationMode:hvm] 408592b2-694a-b671-d4a3-82c19bde3903:map[$VBDs:[285d8c21-883a-2b38-2c4a-a987ee19f1b3 c035dd37-c1d1-a487-77df-a9c8e46cc9b5 99760672-219d-c9b2-312a-81173ccdd226 3873aaaf-1651-92c0-5054-c6c3079d32c5 ff823849-e776-efb3-40de-272f6a30c2fc 29c53819-fc24-1900-47de-c4e50888994c 8eb0bb48-4bd8-43ca-df31-d6ae09a894a9 ae503c5d-c57b-2b8b-bc51-8b34d4b9f6c0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[fdf4167c-1793-1659-7392-015c0c46fd34] addresses:map[0/ipv4/0:192.168.3.78 0/ipv6/0:fe80::f406:dcff:fec4:8f68] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:408592b2-694a-b671-d4a3-82c19bde3903 installTime:1.618108074e+09 mainIpAddress:192.168.3.78 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Cert test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:205e1952-13ae-c38f-f8be-e45d89c3a3db] power_state:Halted snapshots:[7f43cd67-5fd2-10ea-c91c-26e181f718fc] startDelay:0 startTime:1.639623638e+09 tags:[] type:VM uuid:408592b2-694a-b671-d4a3-82c19bde3903 vga:std videoram:8 virtualizationMode:hvm] 57f2f596-32c7-e82e-378a-e039a0075658:map[$VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[2fea095a-ac4b-2f0f-195c-83bf6c368a15:start] expNestedHvm:false hasVendorDevice:false high_availability: id:57f2f596-32c7-e82e-378a-e039a0075658 installTime:1.639671075e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Test os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:587d8953-04d7-2cb5-c77d-f5dc73fe8266] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:57f2f596-32c7-e82e-378a-e039a0075658 vga:std videoram:8 virtualizationMode:hvm] 65faba2e-94de-fd62-ee76-044e9da2e50d:map[$VBDs:[38b066cd-2ecd-e1b1-f867-19e5831e284b adb06f7d-3242-816e-7fc4-71e709fc7fc4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a bae03704-fc2c-d0a9-b300-8cae1b77a858 48880504-edb5-b6cb-b78f-a0561720196c af630cc2-f952-c4c6-5649-1085e965a1f0 f3594756-763c-6ad0-6c0b-7fd61f210ee0 26fad0d5-95e8-3a78-3cab-56902d939881 e2f92181-06af-5bd9-1690-df238e58227c] addresses:map[0/ipv4/0:192.168.1.150 1/ipv4/0:192.168.0.45 2/ipv4/0:192.168.3.1 3/ipv4/0: 4/ipv4/0: 5/ipv4/0: 6/ipv4/0:] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:65faba2e-94de-fd62-ee76-044e9da2e50d installTime:1.63863235e+09 mainIpAddress:192.168.1.150 managementAgentDetected:true memory:map[dynamic:[2.68435456e+08 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description: name_label:Pfsense os_version:map[distro:FreeBSD name:FreeBSD 12.2-STABLE uname:12.2-STABLE] other:map[auto_poweron:true base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:aa51b64b-1fc9-4b99-ab38-52000b5b17e6 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:92b6f3da-6d1e-ef72-89fe-163b37eb534d] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:6.2 snapshots:[770ce00f-df09-5f68-0bff-4fb108421a1d 8cbeb2c5-c057-45df-396c-3a0c2c1f709f] startDelay:0 startTime:1.639654874e+09 tags:[] type:VM uuid:65faba2e-94de-fd62-ee76-044e9da2e50d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:6 minor:2 version:6.2]] 85ea1b49-87df-8f14-5067-087b69164424:map[$VBDs:[6ac5e484-56e4-b8a7-0011-b6c60551b8f7 c4418a00-3aac-3554-3066-b0613354560e] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[53f7d501-2ce5-be27-8d7f-bbfd97812a67] addresses:map[0/ipv4/0:192.168.3.10 0/ipv6/0:fe80::b848:a4ff:febd:c0c0] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:4 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:85ea1b49-87df-8f14-5067-087b69164424 installTime:1.591902262e+09 mainIpAddress:192.168.3.10 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.44245504e+09 static:[5.36870912e+08 6.442450944e+09]] name_description: name_label:Matrix & Jitsi os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:04cab5d4-bf8f-146d-91c5-b562bccc00b0] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[2ba2ac92-e30a-bc99-c6ec-63240ae275b3 d114b5fd-8b4d-cb5b-4664-eaed7195fa8e 4cdc6cc2-9b82-3022-3551-24bc3fa74d68 aa4b0c66-b42c-4872-46de-c0e597e00f55 8484e91e-4eee-b143-f619-4d08c24ee090] startDelay:0 startTime:1.639628863e+09 tags:[] type:VM uuid:85ea1b49-87df-8f14-5067-087b69164424 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 9c2632dc-4424-bbd4-b4be-e0787aab713f:map[$VBDs:[bf0ba9ff-df19-c6e0-541b-418a4d54b639 318b58f7-c7e0-7665-d36a-7075e1ad2bc0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[996d7fa5-42fe-37fb-81e6-ac9dd3fece17] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:9c2632dc-4424-bbd4-b4be-e0787aab713f installTime:1.62934031e+09 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Debian Buster 10 os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:b1f9b815-c847-4567-a58a-d073910dd135 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d0fcf6ec-2344-a934-6f89-388c6c3652f6] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:9c2632dc-4424-bbd4-b4be-e0787aab713f vga:std videoram:8 virtualizationMode:hvm] a6934a4a-6930-b757-87f8-16c1caa5c2ab:map[$VBDs:[6f1befd2-22eb-afa5-aaf9-98de219978b4 ff349489-259c-c561-7726-d3ad850e07fa] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:1] VGPUs:[] VIFs:[766d7214-3e35-110e-b178-2820b0f98009] addresses:map[0/ipv4/0:192.168.3.31 0/ipv6/0:fe80::7482:7bff:fee6:c9f2] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a6934a4a-6930-b757-87f8-16c1caa5c2ab installTime:1.607773001e+09 mainIpAddress:192.168.3.31 memory:map[dynamic:[1.073741824e+09 1.073742e+09] size:1.073742e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Ldap os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d240f9c7-1a2a-d21f-8143-450760f07262] power_state:Halted snapshots:[] startDelay:0 startTime:1.63707986e+09 tags:[] type:VM uuid:a6934a4a-6930-b757-87f8-16c1caa5c2ab vga:std videoram:8 virtualizationMode:hvm] a981c3b3-3e2f-4144-ef85-706e2df5bf54:map[$VBDs:[33c3d709-227a-f015-b8ed-77838be694dd fded2bfc-25e7-1005-5cde-6f5b3d5da000] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[5ae724a1-7807-a6ca-838d-7c97f077a00d] addresses:map[0/ipv4/0:192.168.10.11 0/ipv6/0:fe80::8838:50ff:fe45:6095] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a981c3b3-3e2f-4144-ef85-706e2df5bf54 installTime:<nil> mainIpAddress:192.168.10.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:c981d0c1-fdcc-4d23-a1da-1b02afa9ba8e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:327605af-e6a1-9208-f6da-160c7d727bc8 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[2021.01 XOA] type:VM uuid:a981c3b3-3e2f-4144-ef85-706e2df5bf54 vga:cirrus videoram:8 virtualizationMode:hvm] cdf04491-f6cf-91a6-8413-b3503c09e689:map[$VBDs:[487e79c1-55ef-b61c-83b0-dc5c2d57a985 838a66ca-c7aa-c6ce-624c-9006e273ac4f] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[b2fb8066-358b-1b1f-c3d9-9a1ab38337d7] addresses:map[0/ipv6/0:fe80::543a:8aff:fecd:204b] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:cdf04491-f6cf-91a6-8413-b3503c09e689 installTime:1.599674355e+09 mainIpAddress:fe80::543a:8aff:fecd:204b memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294967296e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri Test os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-10-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a003cf92-2559-aa46-07ce-f4f2889d18b0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:cdf04491-f6cf-91a6-8413-b3503c09e689 vga:std videoram:8 virtualizationMode:hvm] dd1362c6-fcc9-3014-e9d9-d673ad99d53f:map[$VBDs:[9cbe448c-cef1-3a32-8687-09494007060a c9aebc62-11e8-27d7-8497-bd1cde87f0a0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[309a26f4-b1a7-95eb-7038-690acde42a23] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::80ab:ceff:fe1c:3f75] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:dd1362c6-fcc9-3014-e9d9-d673ad99d53f installTime:1.609861939e+09 mainIpAddress:192.168.3.111 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Ubuntu  os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-73-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:20739ac2-5dfa-baa7-6607-ce811c0432c2] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:dd1362c6-fcc9-3014-e9d9-d673ad99d53f vga:std videoram:8 virtualizationMode:hvm] e04ae8d3-c9ef-770f-9553-7261771acd1d:map[$VBDs:[b65b685f-97a7-39e4-61cd-91e4bfb1f72c 41835946-fad4-90ae-68c8-44d02d373fdc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::dc5d:4cff:fe08:5714] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e04ae8d3-c9ef-770f-9553-7261771acd1d installTime:1.639663733e+09 mainIpAddress:192.168.3.76 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Proxy os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29ded3ec-697f-cdb4-8cf1-ed8b5aef6db6] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.639663734e+09 tags:[] type:VM uuid:e04ae8d3-c9ef-770f-9553-7261771acd1d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] e0dad53d-8d06-4663-9e65-324651ec4609:map[$VBDs:[ee3758ed-ca9e-c7b4-19e7-82cf996956f1 26d91313-b5e1-6379-eb3d-8e32c3d47fd4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:8 number:2] VGPUs:[] VIFs:[94e97171-451f-db1f-05e1-e11c2d883796 d098275e-ddf4-aea3-48ec-0674942abf17] addresses:map[1/ipv4/0:192.168.3.100 1/ipv6/0:fe80::d092:6ff:fe6d:68 2/ipv4/0:192.168.10.10 2/ipv6/0:fe80::d490:58ff:fe1b:c0b2] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e0dad53d-8d06-4663-9e65-324651ec4609 installTime:1.591575208e+09 mainIpAddress:192.168.3.100 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 4.294967296e+09]] name_description:Xen Orchestra community edition name_label:XOA-C os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:14dc415f-e59d-b054-84cd-8e12726dd12f] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[053b017d-cd15-8cc4-b3a8-1aa9186df470] startDelay:0 startTime:1.639628847e+09 tags:[XOA] type:VM uuid:e0dad53d-8d06-4663-9e65-324651ec4609 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] ed3f4be7-8edb-9494-dc0c-d280ee0d7168:map[$VBDs:[27693556-c2d5-d02b-45c5-a96b03a48963 41ac3987-1a95-9b1a-51d2-9ae093becc33 74a23937-fa0c-1019-3214-d9154f9560db 4f90c0b3-11bc-5f7f-f993-e244b829aa58 46f1f50d-c4b0-4ac0-63ca-8e5284048841 3bf5ca37-3b62-24f2-e882-e1767176b655 42b64cea-abae-bddb-9ee8-176200d031ac 7a47e006-fd71-9b18-0e34-c85b4ef6c745] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b4c23d16-2de9-b905-7e6e-9f35a334a436] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 installTime:1.621891336e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Backup test os_version:map[] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ea74ecc3-0c68-5d41-8054-2468a3015bba] power_state:Halted snapshots:[5b079275-22f3-a741-7257-dc324c4d4757 fb13a667-a42a-160c-0555-255d464bedaf] startDelay:0 startTime:<nil> tags:[] type:VM uuid:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 vga:std videoram:8 virtualizationMode:hvm] faa6312a-e63b-647a-aefd-b7fb19faa462:map[$VBDs:[e5aba2b0-368f-3b69-3051-f59d419e732b 24ffb7f0-ff4c-8550-fc63-effaf5334750] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[3e92b66b-8237-72fd-6c80-4fff3eeb5c3e] addresses:map[0/ipv4/0:192.168.3.18 0/ipv6/0:fe80::67:37ff:fe89:d207] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:faa6312a-e63b-647a-aefd-b7fb19faa462 installTime:1.60755664e+09 mainIpAddress:192.168.3.18 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294971392e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e95be6b6-f7a0-4495-6b4c-5a0ffdb27cbd] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[f225f0db-9f30-ade1-2512-8d87d06b233c] startDelay:0 startTime:1.63962886e+09 tags:[] type:VM uuid:faa6312a-e63b-647a-aefd-b7fb19faa462 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]]]: result with error: <nil>: timestamp=2021-12-16T11:11:17.691-0500
2021-12-16T11:11:17.694-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [DEBUG] Found the following objects for type 'client.Vm' from xo.getAllObjects: [{Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147484000} PowerState:Halted VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:f212dec4-4682-6045-6dae-1fe80229e66f Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}]: timestamp=2021-12-16T11:11:17.694-0500
2021-12-16T11:11:17.694-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [DEBUG] Found vm: {Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147484000} PowerState:Halted VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:f212dec4-4682-6045-6dae-1fe80229e66f Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}: timestamp=2021-12-16T11:11:17.694-0500
2021-12-16T11:11:17.694-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:17 [TRACE] Waiting 800ms before next try: timestamp=2021-12-16T11:11:17.694-0500
2021-12-16T11:11:18.507-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:18 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM]] and received map[0210f0ab-22d6-169e-dc38-e20e12023805:map[$VBDs:[cc03ed10-7ab8-cede-f650-a89d711e1aab a1cbdbe4-ea21-b849-6e15-2546aec53e1c] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e67e0231-c53b-433e-42cf-5ba8a612ccb8] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0210f0ab-22d6-169e-dc38-e20e12023805 installTime:1.611624727e+09 mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:91a9a3d7-80d7-6c09-fc0f-e591b567bea0] power_state:Halted snapshots:[] startDelay:0 startTime:1.63712329e+09 tags:[] type:VM uuid:0210f0ab-22d6-169e-dc38-e20e12023805 vga:std videoram:8 virtualizationMode:hvm] 048f72fc-29ab-02c2-d810-93368fb69c3a:map[$VBDs:[040c03aa-7967-e986-6cf8-4cfb090cf68c 624b339d-d2bd-02b0-e682-f1a91b11b8d2] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[d30f0084-ae9d-c8a4-5429-57ebddca6de4] addresses:map[0/ipv4/0:192.168.1.11 0/ipv6/0:fe80::740e:feff:feb5:809d] auto_poweron:true bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:048f72fc-29ab-02c2-d810-93368fb69c3a installTime:<nil> mainIpAddress:192.168.1.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:11 minor:11 name:Debian GNU/Linux 11 (bullseye) uname:5.10.0-8-amd64] other:map[auto_poweron:true base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:52e47ccd-7484-48fd-a3cd-310e4d67d75f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:05e09501-3c45-4420-7668-630586cd1584 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[XOA 2021.08] type:VM uuid:048f72fc-29ab-02c2-d810-93368fb69c3a vga:std videoram:8 virtualizationMode:hvm] 105f5092-6e49-ddf0-e1af-cac8a8ddb7ee:map[$VBDs:[724e34d5-9379-0ddd-ed54-b09de9139da6 3bbd6df6-800f-0f96-efaf-72cc5894d2dc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[88261157-b603-6e39-dbc3-4e745e6a8753] addresses:map[0/ipv4/0:192.168.3.24 0/ipv6/0:fe80::f4c9:cdff:fe07:c37] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee installTime:1.604541504e+09 mainIpAddress:192.168.3.24 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.07374592e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Tiny os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:8a4624d6-9022-2802-4261-a189904d85a8] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[630621b4-295a-62a9-bb5c-3c66f7b0ca92] startDelay:0 startTime:1.639628858e+09 tags:[] type:VM uuid:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 19d8f18b-41d7-3cf2-35a0-a65011826a4d:map[$VBDs:[1c31bc0f-c518-6c21-0f3e-9e68eae062a5 3e9fadba-8c71-0b0e-8f6c-8b5d5ac7ccff] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[bd6d8458-18e6-2f52-9b7b-b38e5ab85a94] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::b803:e0ff:fe01:16a9] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:19d8f18b-41d7-3cf2-35a0-a65011826a4d installTime:1.613068062e+09 mainIpAddress:192.168.3.111 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Bind Jenkins Prometheus os_version:map[] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d36e991c-8f11-833f-9723-824005d117e3] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.63962885e+09 tags:[] type:VM uuid:19d8f18b-41d7-3cf2-35a0-a65011826a4d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 2a75143d-013d-24e3-6987-de285d5c4400:map[$VBDs:[2587ed45-675c-170b-ea29-6cfa191bcc51 65c4344f-bf0f-c1a1-128f-47c749f6fdb6 969643e7-7db7-bbf7-a678-9361c26daa91 539ca856-ee96-d94e-1f83-3322b515b61e 9c2fcb21-d667-b683-cf6a-96f38a4cf2cb 8a2797a0-77fa-037e-f0b5-49eabadee22c efc5400b-c109-43ef-ff33-426a1e7b0ce2 3c641b2a-e4de-f85a-09f4-264aed40a394] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b1f00623-3632-593e-b4b4-0ee8e18819d9] addresses:map[0/ipv4/0:192.168.3.79 0/ipv6/0:fe80::a077:16ff:fe53:96e3] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:2a75143d-013d-24e3-6987-de285d5c4400 installTime:1.618107996e+09 mainIpAddress:192.168.3.79 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Host-test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7689a1b7-756a-913a-5aa7-a0533c40ac70] power_state:Halted snapshots:[4830be8e-9159-049f-ee7d-c0aa9a225ee4 403fe925-0b0d-7ac0-4ce7-549f10c6bf99] startDelay:0 startTime:1.629412229e+09 tags:[] type:VM uuid:2a75143d-013d-24e3-6987-de285d5c4400 vga:std videoram:8 virtualizationMode:hvm] 408592b2-694a-b671-d4a3-82c19bde3903:map[$VBDs:[285d8c21-883a-2b38-2c4a-a987ee19f1b3 c035dd37-c1d1-a487-77df-a9c8e46cc9b5 99760672-219d-c9b2-312a-81173ccdd226 3873aaaf-1651-92c0-5054-c6c3079d32c5 ff823849-e776-efb3-40de-272f6a30c2fc 29c53819-fc24-1900-47de-c4e50888994c 8eb0bb48-4bd8-43ca-df31-d6ae09a894a9 ae503c5d-c57b-2b8b-bc51-8b34d4b9f6c0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[fdf4167c-1793-1659-7392-015c0c46fd34] addresses:map[0/ipv4/0:192.168.3.78 0/ipv6/0:fe80::f406:dcff:fec4:8f68] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:408592b2-694a-b671-d4a3-82c19bde3903 installTime:1.618108074e+09 mainIpAddress:192.168.3.78 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Cert test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:205e1952-13ae-c38f-f8be-e45d89c3a3db] power_state:Halted snapshots:[7f43cd67-5fd2-10ea-c91c-26e181f718fc] startDelay:0 startTime:1.639623638e+09 tags:[] type:VM uuid:408592b2-694a-b671-d4a3-82c19bde3903 vga:std videoram:8 virtualizationMode:hvm] 57f2f596-32c7-e82e-378a-e039a0075658:map[$VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[2fea095a-ac4b-2f0f-195c-83bf6c368a15:start] expNestedHvm:false hasVendorDevice:false high_availability: id:57f2f596-32c7-e82e-378a-e039a0075658 installTime:1.639671075e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Test os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:587d8953-04d7-2cb5-c77d-f5dc73fe8266] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:57f2f596-32c7-e82e-378a-e039a0075658 vga:std videoram:8 virtualizationMode:hvm] 65faba2e-94de-fd62-ee76-044e9da2e50d:map[$VBDs:[38b066cd-2ecd-e1b1-f867-19e5831e284b adb06f7d-3242-816e-7fc4-71e709fc7fc4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a bae03704-fc2c-d0a9-b300-8cae1b77a858 48880504-edb5-b6cb-b78f-a0561720196c af630cc2-f952-c4c6-5649-1085e965a1f0 f3594756-763c-6ad0-6c0b-7fd61f210ee0 26fad0d5-95e8-3a78-3cab-56902d939881 e2f92181-06af-5bd9-1690-df238e58227c] addresses:map[0/ipv4/0:192.168.1.150 1/ipv4/0:192.168.0.45 2/ipv4/0:192.168.3.1 3/ipv4/0: 4/ipv4/0: 5/ipv4/0: 6/ipv4/0:] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:65faba2e-94de-fd62-ee76-044e9da2e50d installTime:1.63863235e+09 mainIpAddress:192.168.1.150 managementAgentDetected:true memory:map[dynamic:[2.68435456e+08 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description: name_label:Pfsense os_version:map[distro:FreeBSD name:FreeBSD 12.2-STABLE uname:12.2-STABLE] other:map[auto_poweron:true base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:aa51b64b-1fc9-4b99-ab38-52000b5b17e6 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:92b6f3da-6d1e-ef72-89fe-163b37eb534d] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:6.2 snapshots:[770ce00f-df09-5f68-0bff-4fb108421a1d 8cbeb2c5-c057-45df-396c-3a0c2c1f709f] startDelay:0 startTime:1.639654874e+09 tags:[] type:VM uuid:65faba2e-94de-fd62-ee76-044e9da2e50d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:6 minor:2 version:6.2]] 85ea1b49-87df-8f14-5067-087b69164424:map[$VBDs:[6ac5e484-56e4-b8a7-0011-b6c60551b8f7 c4418a00-3aac-3554-3066-b0613354560e] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[53f7d501-2ce5-be27-8d7f-bbfd97812a67] addresses:map[0/ipv4/0:192.168.3.10 0/ipv6/0:fe80::b848:a4ff:febd:c0c0] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:4 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:85ea1b49-87df-8f14-5067-087b69164424 installTime:1.591902262e+09 mainIpAddress:192.168.3.10 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.44245504e+09 static:[5.36870912e+08 6.442450944e+09]] name_description: name_label:Matrix & Jitsi os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:04cab5d4-bf8f-146d-91c5-b562bccc00b0] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[2ba2ac92-e30a-bc99-c6ec-63240ae275b3 d114b5fd-8b4d-cb5b-4664-eaed7195fa8e 4cdc6cc2-9b82-3022-3551-24bc3fa74d68 aa4b0c66-b42c-4872-46de-c0e597e00f55 8484e91e-4eee-b143-f619-4d08c24ee090] startDelay:0 startTime:1.639628863e+09 tags:[] type:VM uuid:85ea1b49-87df-8f14-5067-087b69164424 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 9c2632dc-4424-bbd4-b4be-e0787aab713f:map[$VBDs:[bf0ba9ff-df19-c6e0-541b-418a4d54b639 318b58f7-c7e0-7665-d36a-7075e1ad2bc0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[996d7fa5-42fe-37fb-81e6-ac9dd3fece17] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:9c2632dc-4424-bbd4-b4be-e0787aab713f installTime:1.62934031e+09 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Debian Buster 10 os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:b1f9b815-c847-4567-a58a-d073910dd135 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d0fcf6ec-2344-a934-6f89-388c6c3652f6] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:9c2632dc-4424-bbd4-b4be-e0787aab713f vga:std videoram:8 virtualizationMode:hvm] a6934a4a-6930-b757-87f8-16c1caa5c2ab:map[$VBDs:[6f1befd2-22eb-afa5-aaf9-98de219978b4 ff349489-259c-c561-7726-d3ad850e07fa] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:1] VGPUs:[] VIFs:[766d7214-3e35-110e-b178-2820b0f98009] addresses:map[0/ipv4/0:192.168.3.31 0/ipv6/0:fe80::7482:7bff:fee6:c9f2] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a6934a4a-6930-b757-87f8-16c1caa5c2ab installTime:1.607773001e+09 mainIpAddress:192.168.3.31 memory:map[dynamic:[1.073741824e+09 1.073742e+09] size:1.073742e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Ldap os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d240f9c7-1a2a-d21f-8143-450760f07262] power_state:Halted snapshots:[] startDelay:0 startTime:1.63707986e+09 tags:[] type:VM uuid:a6934a4a-6930-b757-87f8-16c1caa5c2ab vga:std videoram:8 virtualizationMode:hvm] a981c3b3-3e2f-4144-ef85-706e2df5bf54:map[$VBDs:[33c3d709-227a-f015-b8ed-77838be694dd fded2bfc-25e7-1005-5cde-6f5b3d5da000] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[5ae724a1-7807-a6ca-838d-7c97f077a00d] addresses:map[0/ipv4/0:192.168.10.11 0/ipv6/0:fe80::8838:50ff:fe45:6095] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a981c3b3-3e2f-4144-ef85-706e2df5bf54 installTime:<nil> mainIpAddress:192.168.10.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:c981d0c1-fdcc-4d23-a1da-1b02afa9ba8e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:327605af-e6a1-9208-f6da-160c7d727bc8 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[2021.01 XOA] type:VM uuid:a981c3b3-3e2f-4144-ef85-706e2df5bf54 vga:cirrus videoram:8 virtualizationMode:hvm] cdf04491-f6cf-91a6-8413-b3503c09e689:map[$VBDs:[487e79c1-55ef-b61c-83b0-dc5c2d57a985 838a66ca-c7aa-c6ce-624c-9006e273ac4f] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[b2fb8066-358b-1b1f-c3d9-9a1ab38337d7] addresses:map[0/ipv6/0:fe80::543a:8aff:fecd:204b] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:cdf04491-f6cf-91a6-8413-b3503c09e689 installTime:1.599674355e+09 mainIpAddress:fe80::543a:8aff:fecd:204b memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294967296e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri Test os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-10-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a003cf92-2559-aa46-07ce-f4f2889d18b0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:cdf04491-f6cf-91a6-8413-b3503c09e689 vga:std videoram:8 virtualizationMode:hvm] dd1362c6-fcc9-3014-e9d9-d673ad99d53f:map[$VBDs:[9cbe448c-cef1-3a32-8687-09494007060a c9aebc62-11e8-27d7-8497-bd1cde87f0a0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[309a26f4-b1a7-95eb-7038-690acde42a23] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::80ab:ceff:fe1c:3f75] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:dd1362c6-fcc9-3014-e9d9-d673ad99d53f installTime:1.609861939e+09 mainIpAddress:192.168.3.111 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Ubuntu  os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-73-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:20739ac2-5dfa-baa7-6607-ce811c0432c2] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:dd1362c6-fcc9-3014-e9d9-d673ad99d53f vga:std videoram:8 virtualizationMode:hvm] e04ae8d3-c9ef-770f-9553-7261771acd1d:map[$VBDs:[b65b685f-97a7-39e4-61cd-91e4bfb1f72c 41835946-fad4-90ae-68c8-44d02d373fdc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::dc5d:4cff:fe08:5714] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e04ae8d3-c9ef-770f-9553-7261771acd1d installTime:1.639663733e+09 mainIpAddress:192.168.3.76 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Proxy os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29ded3ec-697f-cdb4-8cf1-ed8b5aef6db6] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.639663734e+09 tags:[] type:VM uuid:e04ae8d3-c9ef-770f-9553-7261771acd1d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] e0dad53d-8d06-4663-9e65-324651ec4609:map[$VBDs:[ee3758ed-ca9e-c7b4-19e7-82cf996956f1 26d91313-b5e1-6379-eb3d-8e32c3d47fd4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:8 number:2] VGPUs:[] VIFs:[94e97171-451f-db1f-05e1-e11c2d883796 d098275e-ddf4-aea3-48ec-0674942abf17] addresses:map[1/ipv4/0:192.168.3.100 1/ipv6/0:fe80::d092:6ff:fe6d:68 2/ipv4/0:192.168.10.10 2/ipv6/0:fe80::d490:58ff:fe1b:c0b2] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e0dad53d-8d06-4663-9e65-324651ec4609 installTime:1.591575208e+09 mainIpAddress:192.168.3.100 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 4.294967296e+09]] name_description:Xen Orchestra community edition name_label:XOA-C os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:14dc415f-e59d-b054-84cd-8e12726dd12f] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[053b017d-cd15-8cc4-b3a8-1aa9186df470] startDelay:0 startTime:1.639628847e+09 tags:[XOA] type:VM uuid:e0dad53d-8d06-4663-9e65-324651ec4609 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] ed3f4be7-8edb-9494-dc0c-d280ee0d7168:map[$VBDs:[27693556-c2d5-d02b-45c5-a96b03a48963 41ac3987-1a95-9b1a-51d2-9ae093becc33 74a23937-fa0c-1019-3214-d9154f9560db 4f90c0b3-11bc-5f7f-f993-e244b829aa58 46f1f50d-c4b0-4ac0-63ca-8e5284048841 3bf5ca37-3b62-24f2-e882-e1767176b655 42b64cea-abae-bddb-9ee8-176200d031ac 7a47e006-fd71-9b18-0e34-c85b4ef6c745] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b4c23d16-2de9-b905-7e6e-9f35a334a436] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 installTime:1.621891336e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Backup test os_version:map[] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ea74ecc3-0c68-5d41-8054-2468a3015bba] power_state:Halted snapshots:[5b079275-22f3-a741-7257-dc324c4d4757 fb13a667-a42a-160c-0555-255d464bedaf] startDelay:0 startTime:<nil> tags:[] type:VM uuid:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 vga:std videoram:8 virtualizationMode:hvm] faa6312a-e63b-647a-aefd-b7fb19faa462:map[$VBDs:[e5aba2b0-368f-3b69-3051-f59d419e732b 24ffb7f0-ff4c-8550-fc63-effaf5334750] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[3e92b66b-8237-72fd-6c80-4fff3eeb5c3e] addresses:map[0/ipv4/0:192.168.3.18 0/ipv6/0:fe80::67:37ff:fe89:d207] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:faa6312a-e63b-647a-aefd-b7fb19faa462 installTime:1.60755664e+09 mainIpAddress:192.168.3.18 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294971392e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e95be6b6-f7a0-4495-6b4c-5a0ffdb27cbd] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[f225f0db-9f30-ade1-2512-8d87d06b233c] startDelay:0 startTime:1.63962886e+09 tags:[] type:VM uuid:faa6312a-e63b-647a-aefd-b7fb19faa462 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]]]: result with error: <nil>: timestamp=2021-12-16T11:11:18.506-0500
2021-12-16T11:11:18.510-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:18 [DEBUG] Found the following objects for type 'client.Vm' from xo.getAllObjects: [{Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147484000} PowerState:Halted VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:f212dec4-4682-6045-6dae-1fe80229e66f Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}]: timestamp=2021-12-16T11:11:18.509-0500
2021-12-16T11:11:18.510-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:18 [DEBUG] Found vm: {Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147484000} PowerState:Halted VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:f212dec4-4682-6045-6dae-1fe80229e66f Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}: timestamp=2021-12-16T11:11:18.510-0500
2021-12-16T11:11:18.510-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:18 [TRACE] Waiting 1.6s before next try: timestamp=2021-12-16T11:11:18.510-0500
2021-12-16T11:11:20.132-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:20 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM]] and received map[0210f0ab-22d6-169e-dc38-e20e12023805:map[$VBDs:[cc03ed10-7ab8-cede-f650-a89d711e1aab a1cbdbe4-ea21-b849-6e15-2546aec53e1c] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e67e0231-c53b-433e-42cf-5ba8a612ccb8] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0210f0ab-22d6-169e-dc38-e20e12023805 installTime:1.611624727e+09 mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:91a9a3d7-80d7-6c09-fc0f-e591b567bea0] power_state:Halted snapshots:[] startDelay:0 startTime:1.63712329e+09 tags:[] type:VM uuid:0210f0ab-22d6-169e-dc38-e20e12023805 vga:std videoram:8 virtualizationMode:hvm] 048f72fc-29ab-02c2-d810-93368fb69c3a:map[$VBDs:[040c03aa-7967-e986-6cf8-4cfb090cf68c 624b339d-d2bd-02b0-e682-f1a91b11b8d2] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[d30f0084-ae9d-c8a4-5429-57ebddca6de4] addresses:map[0/ipv4/0:192.168.1.11 0/ipv6/0:fe80::740e:feff:feb5:809d] auto_poweron:true bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:048f72fc-29ab-02c2-d810-93368fb69c3a installTime:<nil> mainIpAddress:192.168.1.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:11 minor:11 name:Debian GNU/Linux 11 (bullseye) uname:5.10.0-8-amd64] other:map[auto_poweron:true base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:52e47ccd-7484-48fd-a3cd-310e4d67d75f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:05e09501-3c45-4420-7668-630586cd1584 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[XOA 2021.08] type:VM uuid:048f72fc-29ab-02c2-d810-93368fb69c3a vga:std videoram:8 virtualizationMode:hvm] 105f5092-6e49-ddf0-e1af-cac8a8ddb7ee:map[$VBDs:[724e34d5-9379-0ddd-ed54-b09de9139da6 3bbd6df6-800f-0f96-efaf-72cc5894d2dc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[88261157-b603-6e39-dbc3-4e745e6a8753] addresses:map[0/ipv4/0:192.168.3.24 0/ipv6/0:fe80::f4c9:cdff:fe07:c37] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee installTime:1.604541504e+09 mainIpAddress:192.168.3.24 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.07374592e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Tiny os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:8a4624d6-9022-2802-4261-a189904d85a8] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[630621b4-295a-62a9-bb5c-3c66f7b0ca92] startDelay:0 startTime:1.639628858e+09 tags:[] type:VM uuid:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 19d8f18b-41d7-3cf2-35a0-a65011826a4d:map[$VBDs:[1c31bc0f-c518-6c21-0f3e-9e68eae062a5 3e9fadba-8c71-0b0e-8f6c-8b5d5ac7ccff] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[bd6d8458-18e6-2f52-9b7b-b38e5ab85a94] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::b803:e0ff:fe01:16a9] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:19d8f18b-41d7-3cf2-35a0-a65011826a4d installTime:1.613068062e+09 mainIpAddress:192.168.3.111 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Bind Jenkins Prometheus os_version:map[] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d36e991c-8f11-833f-9723-824005d117e3] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.63962885e+09 tags:[] type:VM uuid:19d8f18b-41d7-3cf2-35a0-a65011826a4d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 2a75143d-013d-24e3-6987-de285d5c4400:map[$VBDs:[2587ed45-675c-170b-ea29-6cfa191bcc51 65c4344f-bf0f-c1a1-128f-47c749f6fdb6 969643e7-7db7-bbf7-a678-9361c26daa91 539ca856-ee96-d94e-1f83-3322b515b61e 9c2fcb21-d667-b683-cf6a-96f38a4cf2cb 8a2797a0-77fa-037e-f0b5-49eabadee22c efc5400b-c109-43ef-ff33-426a1e7b0ce2 3c641b2a-e4de-f85a-09f4-264aed40a394] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b1f00623-3632-593e-b4b4-0ee8e18819d9] addresses:map[0/ipv4/0:192.168.3.79 0/ipv6/0:fe80::a077:16ff:fe53:96e3] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:2a75143d-013d-24e3-6987-de285d5c4400 installTime:1.618107996e+09 mainIpAddress:192.168.3.79 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Host-test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7689a1b7-756a-913a-5aa7-a0533c40ac70] power_state:Halted snapshots:[4830be8e-9159-049f-ee7d-c0aa9a225ee4 403fe925-0b0d-7ac0-4ce7-549f10c6bf99] startDelay:0 startTime:1.629412229e+09 tags:[] type:VM uuid:2a75143d-013d-24e3-6987-de285d5c4400 vga:std videoram:8 virtualizationMode:hvm] 408592b2-694a-b671-d4a3-82c19bde3903:map[$VBDs:[285d8c21-883a-2b38-2c4a-a987ee19f1b3 c035dd37-c1d1-a487-77df-a9c8e46cc9b5 99760672-219d-c9b2-312a-81173ccdd226 3873aaaf-1651-92c0-5054-c6c3079d32c5 ff823849-e776-efb3-40de-272f6a30c2fc 29c53819-fc24-1900-47de-c4e50888994c 8eb0bb48-4bd8-43ca-df31-d6ae09a894a9 ae503c5d-c57b-2b8b-bc51-8b34d4b9f6c0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[fdf4167c-1793-1659-7392-015c0c46fd34] addresses:map[0/ipv4/0:192.168.3.78 0/ipv6/0:fe80::f406:dcff:fec4:8f68] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:408592b2-694a-b671-d4a3-82c19bde3903 installTime:1.618108074e+09 mainIpAddress:192.168.3.78 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Cert test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:205e1952-13ae-c38f-f8be-e45d89c3a3db] power_state:Halted snapshots:[7f43cd67-5fd2-10ea-c91c-26e181f718fc] startDelay:0 startTime:1.639623638e+09 tags:[] type:VM uuid:408592b2-694a-b671-d4a3-82c19bde3903 vga:std videoram:8 virtualizationMode:hvm] 57f2f596-32c7-e82e-378a-e039a0075658:map[$VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:57f2f596-32c7-e82e-378a-e039a0075658 installTime:1.639671075e+09 managementAgentDetected:false memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:0 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Test os_version:map[] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:587d8953-04d7-2cb5-c77d-f5dc73fe8266] power_state:Running pvDriversDetected:false snapshots:[] startDelay:0 startTime:1.639671077e+09 tags:[] type:VM uuid:57f2f596-32c7-e82e-378a-e039a0075658 vga:std videoram:8 virtualizationMode:hvm xenTools:false] 65faba2e-94de-fd62-ee76-044e9da2e50d:map[$VBDs:[38b066cd-2ecd-e1b1-f867-19e5831e284b adb06f7d-3242-816e-7fc4-71e709fc7fc4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a bae03704-fc2c-d0a9-b300-8cae1b77a858 48880504-edb5-b6cb-b78f-a0561720196c af630cc2-f952-c4c6-5649-1085e965a1f0 f3594756-763c-6ad0-6c0b-7fd61f210ee0 26fad0d5-95e8-3a78-3cab-56902d939881 e2f92181-06af-5bd9-1690-df238e58227c] addresses:map[0/ipv4/0:192.168.1.150 1/ipv4/0:192.168.0.45 2/ipv4/0:192.168.3.1 3/ipv4/0: 4/ipv4/0: 5/ipv4/0: 6/ipv4/0:] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:65faba2e-94de-fd62-ee76-044e9da2e50d installTime:1.63863235e+09 mainIpAddress:192.168.1.150 managementAgentDetected:true memory:map[dynamic:[2.68435456e+08 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description: name_label:Pfsense os_version:map[distro:FreeBSD name:FreeBSD 12.2-STABLE uname:12.2-STABLE] other:map[auto_poweron:true base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:aa51b64b-1fc9-4b99-ab38-52000b5b17e6 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:92b6f3da-6d1e-ef72-89fe-163b37eb534d] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:6.2 snapshots:[770ce00f-df09-5f68-0bff-4fb108421a1d 8cbeb2c5-c057-45df-396c-3a0c2c1f709f] startDelay:0 startTime:1.639654874e+09 tags:[] type:VM uuid:65faba2e-94de-fd62-ee76-044e9da2e50d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:6 minor:2 version:6.2]] 85ea1b49-87df-8f14-5067-087b69164424:map[$VBDs:[6ac5e484-56e4-b8a7-0011-b6c60551b8f7 c4418a00-3aac-3554-3066-b0613354560e] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] 
newknowledg commented 2 years ago
VGPUs:[] VIFs:[53f7d501-2ce5-be27-8d7f-bbfd97812a67] addresses:map[0/ipv4/0:192.168.3.10 0/ipv6/0:fe80::b848:a4ff:febd:c0c0] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:4 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:85ea1b49-87df-8f14-5067-087b69164424 installTime:1.591902262e+09 mainIpAddress:192.168.3.10 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.44245504e+09 static:[5.36870912e+08 6.442450944e+09]] name_description: name_label:Matrix & Jitsi os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:04cab5d4-bf8f-146d-91c5-b562bccc00b0] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[2ba2ac92-e30a-bc99-c6ec-63240ae275b3 d114b5fd-8b4d-cb5b-4664-eaed7195fa8e 4cdc6cc2-9b82-3022-3551-24bc3fa74d68 aa4b0c66-b42c-4872-46de-c0e597e00f55 8484e91e-4eee-b143-f619-4d08c24ee090] startDelay:0 startTime:1.639628863e+09 tags:[] type:VM uuid:85ea1b49-87df-8f14-5067-087b69164424 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 9c2632dc-4424-bbd4-b4be-e0787aab713f:map[$VBDs:[bf0ba9ff-df19-c6e0-541b-418a4d54b639 318b58f7-c7e0-7665-d36a-7075e1ad2bc0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[996d7fa5-42fe-37fb-81e6-ac9dd3fece17] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:9c2632dc-4424-bbd4-b4be-e0787aab713f installTime:1.62934031e+09 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Debian Buster 10 os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:b1f9b815-c847-4567-a58a-d073910dd135 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d0fcf6ec-2344-a934-6f89-388c6c3652f6] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:9c2632dc-4424-bbd4-b4be-e0787aab713f vga:std videoram:8 virtualizationMode:hvm] a6934a4a-6930-b757-87f8-16c1caa5c2ab:map[$VBDs:[6f1befd2-22eb-afa5-aaf9-98de219978b4 ff349489-259c-c561-7726-d3ad850e07fa] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:1] VGPUs:[] VIFs:[766d7214-3e35-110e-b178-2820b0f98009] addresses:map[0/ipv4/0:192.168.3.31 0/ipv6/0:fe80::7482:7bff:fee6:c9f2] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a6934a4a-6930-b757-87f8-16c1caa5c2ab installTime:1.607773001e+09 mainIpAddress:192.168.3.31 memory:map[dynamic:[1.073741824e+09 1.073742e+09] size:1.073742e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Ldap os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d240f9c7-1a2a-d21f-8143-450760f07262] power_state:Halted snapshots:[] startDelay:0 startTime:1.63707986e+09 tags:[] type:VM uuid:a6934a4a-6930-b757-87f8-16c1caa5c2ab vga:std videoram:8 virtualizationMode:hvm] a981c3b3-3e2f-4144-ef85-706e2df5bf54:map[$VBDs:[33c3d709-227a-f015-b8ed-77838be694dd fded2bfc-25e7-1005-5cde-6f5b3d5da000] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[5ae724a1-7807-a6ca-838d-7c97f077a00d] addresses:map[0/ipv4/0:192.168.10.11 0/ipv6/0:fe80::8838:50ff:fe45:6095] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a981c3b3-3e2f-4144-ef85-706e2df5bf54 installTime:<nil> mainIpAddress:192.168.10.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:c981d0c1-fdcc-4d23-a1da-1b02afa9ba8e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:327605af-e6a1-9208-f6da-160c7d727bc8 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[2021.01 XOA] type:VM uuid:a981c3b3-3e2f-4144-ef85-706e2df5bf54 vga:cirrus videoram:8 virtualizationMode:hvm] cdf04491-f6cf-91a6-8413-b3503c09e689:map[$VBDs:[487e79c1-55ef-b61c-83b0-dc5c2d57a985 838a66ca-c7aa-c6ce-624c-9006e273ac4f] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[b2fb8066-358b-1b1f-c3d9-9a1ab38337d7] addresses:map[0/ipv6/0:fe80::543a:8aff:fecd:204b] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:cdf04491-f6cf-91a6-8413-b3503c09e689 installTime:1.599674355e+09 mainIpAddress:fe80::543a:8aff:fecd:204b memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294967296e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri Test os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-10-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a003cf92-2559-aa46-07ce-f4f2889d18b0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:cdf04491-f6cf-91a6-8413-b3503c09e689 vga:std videoram:8 virtualizationMode:hvm] dd1362c6-fcc9-3014-e9d9-d673ad99d53f:map[$VBDs:[9cbe448c-cef1-3a32-8687-09494007060a c9aebc62-11e8-27d7-8497-bd1cde87f0a0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[309a26f4-b1a7-95eb-7038-690acde42a23] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::80ab:ceff:fe1c:3f75] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:dd1362c6-fcc9-3014-e9d9-d673ad99d53f installTime:1.609861939e+09 mainIpAddress:192.168.3.111 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Ubuntu  os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-73-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:20739ac2-5dfa-baa7-6607-ce811c0432c2] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:dd1362c6-fcc9-3014-e9d9-d673ad99d53f vga:std videoram:8 virtualizationMode:hvm] e04ae8d3-c9ef-770f-9553-7261771acd1d:map[$VBDs:[b65b685f-97a7-39e4-61cd-91e4bfb1f72c 41835946-fad4-90ae-68c8-44d02d373fdc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::dc5d:4cff:fe08:5714] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e04ae8d3-c9ef-770f-9553-7261771acd1d installTime:1.639663733e+09 mainIpAddress:192.168.3.76 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Proxy os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29ded3ec-697f-cdb4-8cf1-ed8b5aef6db6] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.639663734e+09 tags:[] type:VM uuid:e04ae8d3-c9ef-770f-9553-7261771acd1d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] e0dad53d-8d06-4663-9e65-324651ec4609:map[$VBDs:[ee3758ed-ca9e-c7b4-19e7-82cf996956f1 26d91313-b5e1-6379-eb3d-8e32c3d47fd4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:8 number:2] VGPUs:[] VIFs:[94e97171-451f-db1f-05e1-e11c2d883796 d098275e-ddf4-aea3-48ec-0674942abf17] addresses:map[1/ipv4/0:192.168.3.100 1/ipv6/0:fe80::d092:6ff:fe6d:68 2/ipv4/0:192.168.10.10 2/ipv6/0:fe80::d490:58ff:fe1b:c0b2] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e0dad53d-8d06-4663-9e65-324651ec4609 installTime:1.591575208e+09 mainIpAddress:192.168.3.100 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 4.294967296e+09]] name_description:Xen Orchestra community edition name_label:XOA-C os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:14dc415f-e59d-b054-84cd-8e12726dd12f] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[053b017d-cd15-8cc4-b3a8-1aa9186df470] startDelay:0 startTime:1.639628847e+09 tags:[XOA] type:VM uuid:e0dad53d-8d06-4663-9e65-324651ec4609 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] ed3f4be7-8edb-9494-dc0c-d280ee0d7168:map[$VBDs:[27693556-c2d5-d02b-45c5-a96b03a48963 41ac3987-1a95-9b1a-51d2-9ae093becc33 74a23937-fa0c-1019-3214-d9154f9560db 4f90c0b3-11bc-5f7f-f993-e244b829aa58 46f1f50d-c4b0-4ac0-63ca-8e5284048841 3bf5ca37-3b62-24f2-e882-e1767176b655 42b64cea-abae-bddb-9ee8-176200d031ac 7a47e006-fd71-9b18-0e34-c85b4ef6c745] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b4c23d16-2de9-b905-7e6e-9f35a334a436] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 installTime:1.621891336e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Backup test os_version:map[] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ea74ecc3-0c68-5d41-8054-2468a3015bba] power_state:Halted snapshots:[5b079275-22f3-a741-7257-dc324c4d4757 fb13a667-a42a-160c-0555-255d464bedaf] startDelay:0 startTime:<nil> tags:[] type:VM uuid:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 vga:std videoram:8 virtualizationMode:hvm] faa6312a-e63b-647a-aefd-b7fb19faa462:map[$VBDs:[e5aba2b0-368f-3b69-3051-f59d419e732b 24ffb7f0-ff4c-8550-fc63-effaf5334750] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[3e92b66b-8237-72fd-6c80-4fff3eeb5c3e] addresses:map[0/ipv4/0:192.168.3.18 0/ipv6/0:fe80::67:37ff:fe89:d207] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:faa6312a-e63b-647a-aefd-b7fb19faa462 installTime:1.60755664e+09 mainIpAddress:192.168.3.18 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294971392e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e95be6b6-f7a0-4495-6b4c-5a0ffdb27cbd] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[f225f0db-9f30-ade1-2512-8d87d06b233c] startDelay:0 startTime:1.63962886e+09 tags:[] type:VM uuid:faa6312a-e63b-647a-aefd-b7fb19faa462 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]]]: result with error: <nil>: timestamp=2021-12-16T11:11:20.131-0500
2021-12-16T11:11:20.134-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:20 [DEBUG] Found the following objects for type 'client.Vm' from xo.getAllObjects: [{Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:0} PowerState:Running VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:b2fae86d-40b5-433b-8fd2-09444f2e06d2 Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}]: timestamp=2021-12-16T11:11:20.134-0500
2021-12-16T11:11:20.134-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:20 [DEBUG] Found vm: {Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:0} PowerState:Running VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:b2fae86d-40b5-433b-8fd2-09444f2e06d2 Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}: timestamp=2021-12-16T11:11:20.134-0500
2021-12-16T11:11:20.134-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:20 [TRACE] Waiting 3.2s before next try: timestamp=2021-12-16T11:11:20.134-0500
2021-12-16T11:11:23.345-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:23 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM]] and received map[0210f0ab-22d6-169e-dc38-e20e12023805:map[$VBDs:[cc03ed10-7ab8-cede-f650-a89d711e1aab a1cbdbe4-ea21-b849-6e15-2546aec53e1c] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e67e0231-c53b-433e-42cf-5ba8a612ccb8] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0210f0ab-22d6-169e-dc38-e20e12023805 installTime:1.611624727e+09 mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:91a9a3d7-80d7-6c09-fc0f-e591b567bea0] power_state:Halted snapshots:[] startDelay:0 startTime:1.63712329e+09 tags:[] type:VM uuid:0210f0ab-22d6-169e-dc38-e20e12023805 vga:std videoram:8 virtualizationMode:hvm] 048f72fc-29ab-02c2-d810-93368fb69c3a:map[$VBDs:[040c03aa-7967-e986-6cf8-4cfb090cf68c 624b339d-d2bd-02b0-e682-f1a91b11b8d2] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[d30f0084-ae9d-c8a4-5429-57ebddca6de4] addresses:map[0/ipv4/0:192.168.1.11 0/ipv6/0:fe80::740e:feff:feb5:809d] auto_poweron:true bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:048f72fc-29ab-02c2-d810-93368fb69c3a installTime:<nil> mainIpAddress:192.168.1.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:11 minor:11 name:Debian GNU/Linux 11 (bullseye) uname:5.10.0-8-amd64] other:map[auto_poweron:true base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:52e47ccd-7484-48fd-a3cd-310e4d67d75f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:05e09501-3c45-4420-7668-630586cd1584 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[XOA 2021.08] type:VM uuid:048f72fc-29ab-02c2-d810-93368fb69c3a vga:std videoram:8 virtualizationMode:hvm] 105f5092-6e49-ddf0-e1af-cac8a8ddb7ee:map[$VBDs:[724e34d5-9379-0ddd-ed54-b09de9139da6 3bbd6df6-800f-0f96-efaf-72cc5894d2dc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[88261157-b603-6e39-dbc3-4e745e6a8753] addresses:map[0/ipv4/0:192.168.3.24 0/ipv6/0:fe80::f4c9:cdff:fe07:c37] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee installTime:1.604541504e+09 mainIpAddress:192.168.3.24 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.07374592e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Tiny os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:8a4624d6-9022-2802-4261-a189904d85a8] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[630621b4-295a-62a9-bb5c-3c66f7b0ca92] startDelay:0 startTime:1.639628858e+09 tags:[] type:VM uuid:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 19d8f18b-41d7-3cf2-35a0-a65011826a4d:map[$VBDs:[1c31bc0f-c518-6c21-0f3e-9e68eae062a5 3e9fadba-8c71-0b0e-8f6c-8b5d5ac7ccff] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[bd6d8458-18e6-2f52-9b7b-b38e5ab85a94] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::b803:e0ff:fe01:16a9] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:19d8f18b-41d7-3cf2-35a0-a65011826a4d installTime:1.613068062e+09 mainIpAddress:192.168.3.111 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Bind Jenkins Prometheus os_version:map[] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d36e991c-8f11-833f-9723-824005d117e3] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.63962885e+09 tags:[] type:VM uuid:19d8f18b-41d7-3cf2-35a0-a65011826a4d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 2a75143d-013d-24e3-6987-de285d5c4400:map[$VBDs:[2587ed45-675c-170b-ea29-6cfa191bcc51 65c4344f-bf0f-c1a1-128f-47c749f6fdb6 969643e7-7db7-bbf7-a678-9361c26daa91 539ca856-ee96-d94e-1f83-3322b515b61e 9c2fcb21-d667-b683-cf6a-96f38a4cf2cb 8a2797a0-77fa-037e-f0b5-49eabadee22c efc5400b-c109-43ef-ff33-426a1e7b0ce2 3c641b2a-e4de-f85a-09f4-264aed40a394] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b1f00623-3632-593e-b4b4-0ee8e18819d9] addresses:map[0/ipv4/0:192.168.3.79 0/ipv6/0:fe80::a077:16ff:fe53:96e3] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:2a75143d-013d-24e3-6987-de285d5c4400 installTime:1.618107996e+09 mainIpAddress:192.168.3.79 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Host-test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7689a1b7-756a-913a-5aa7-a0533c40ac70] power_state:Halted snapshots:[4830be8e-9159-049f-ee7d-c0aa9a225ee4 403fe925-0b0d-7ac0-4ce7-549f10c6bf99] startDelay:0 startTime:1.629412229e+09 tags:[] type:VM uuid:2a75143d-013d-24e3-6987-de285d5c4400 vga:std videoram:8 virtualizationMode:hvm] 408592b2-694a-b671-d4a3-82c19bde3903:map[$VBDs:[285d8c21-883a-2b38-2c4a-a987ee19f1b3 c035dd37-c1d1-a487-77df-a9c8e46cc9b5 99760672-219d-c9b2-312a-81173ccdd226 3873aaaf-1651-92c0-5054-c6c3079d32c5 ff823849-e776-efb3-40de-272f6a30c2fc 29c53819-fc24-1900-47de-c4e50888994c 8eb0bb48-4bd8-43ca-df31-d6ae09a894a9 ae503c5d-c57b-2b8b-bc51-8b34d4b9f6c0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[fdf4167c-1793-1659-7392-015c0c46fd34] addresses:map[0/ipv4/0:192.168.3.78 0/ipv6/0:fe80::f406:dcff:fec4:8f68] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:408592b2-694a-b671-d4a3-82c19bde3903 installTime:1.618108074e+09 mainIpAddress:192.168.3.78 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Cert test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:205e1952-13ae-c38f-f8be-e45d89c3a3db] power_state:Halted snapshots:[7f43cd67-5fd2-10ea-c91c-26e181f718fc] startDelay:0 startTime:1.639623638e+09 tags:[] type:VM uuid:408592b2-694a-b671-d4a3-82c19bde3903 vga:std videoram:8 virtualizationMode:hvm] 57f2f596-32c7-e82e-378a-e039a0075658:map[$VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:57f2f596-32c7-e82e-378a-e039a0075658 installTime:1.639671075e+09 managementAgentDetected:false memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Test os_version:map[] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:587d8953-04d7-2cb5-c77d-f5dc73fe8266] power_state:Running pvDriversDetected:false snapshots:[] startDelay:0 startTime:1.639671077e+09 tags:[] type:VM uuid:57f2f596-32c7-e82e-378a-e039a0075658 vga:std videoram:8 virtualizationMode:hvm xenTools:false] 65faba2e-94de-fd62-ee76-044e9da2e50d:map[$VBDs:[38b066cd-2ecd-e1b1-f867-19e5831e284b adb06f7d-3242-816e-7fc4-71e709fc7fc4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a bae03704-fc2c-d0a9-b300-8cae1b77a858 48880504-edb5-b6cb-b78f-a0561720196c af630cc2-f952-c4c6-5649-1085e965a1f0 f3594756-763c-6ad0-6c0b-7fd61f210ee0 26fad0d5-95e8-3a78-3cab-56902d939881 e2f92181-06af-5bd9-1690-df238e58227c] addresses:map[0/ipv4/0:192.168.1.150 1/ipv4/0:192.168.0.45 2/ipv4/0:192.168.3.1 3/ipv4/0: 4/ipv4/0: 5/ipv4/0: 6/ipv4/0:] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:65faba2e-94de-fd62-ee76-044e9da2e50d installTime:1.63863235e+09 mainIpAddress:192.168.1.150 managementAgentDetected:true memory:map[dynamic:[2.68435456e+08 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description: name_label:Pfsense os_version:map[distro:FreeBSD name:FreeBSD 12.2-STABLE uname:12.2-STABLE] other:map[auto_poweron:true base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:aa51b64b-1fc9-4b99-ab38-52000b5b17e6 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:92b6f3da-6d1e-ef72-89fe-163b37eb534d] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:6.2 snapshots:[770ce00f-df09-5f68-0bff-4fb108421a1d 8cbeb2c5-c057-45df-396c-3a0c2c1f709f] startDelay:0 startTime:1.639654874e+09 tags:[] type:VM uuid:65faba2e-94de-fd62-ee76-044e9da2e50d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:6 minor:2 version:6.2]] 85ea1b49-87df-8f14-5067-087b69164424:map[$VBDs:[6ac5e484-56e4-b8a7-0011-b6c60551b8f7 c4418a00-3aac-3554-3066-b0613354560e] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[53f7d501-2ce5-be27-8d7f-bbfd97812a67] addresses:map[0/ipv4/0:192.168.3.10 0/ipv6/0:fe80::b848:a4ff:febd:c0c0] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:4 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:85ea1b49-87df-8f14-5067-087b69164424 installTime:1.591902262e+09 mainIpAddress:192.168.3.10 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.44245504e+09 static:[5.36870912e+08 6.442450944e+09]] name_description: name_label:Matrix & Jitsi os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:04cab5d4-bf8f-146d-91c5-b562bccc00b0] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[2ba2ac92-e30a-bc99-c6ec-63240ae275b3 d114b5fd-8b4d-cb5b-4664-eaed7195fa8e 4cdc6cc2-9b82-3022-3551-24bc3fa74d68 aa4b0c66-b42c-4872-46de-c0e597e00f55 8484e91e-4eee-b143-f619-4d08c24ee090] startDelay:0 startTime:1.639628863e+09 tags:[] type:VM uuid:85ea1b49-87df-8f14-5067-087b69164424 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 9c2632dc-4424-bbd4-b4be-e0787aab713f:map[$VBDs:[bf0ba9ff-df19-c6e0-541b-418a4d54b639 318b58f7-c7e0-7665-d36a-7075e1ad2bc0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[996d7fa5-42fe-37fb-81e6-ac9dd3fece17] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:9c2632dc-4424-bbd4-b4be-e0787aab713f installTime:1.62934031e+09 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Debian Buster 10 os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:b1f9b815-c847-4567-a58a-d073910dd135 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d0fcf6ec-2344-a934-6f89-388c6c3652f6] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:9c2632dc-4424-bbd4-b4be-e0787aab713f vga:std videoram:8 virtualizationMode:hvm] a6934a4a-6930-b757-87f8-16c1caa5c2ab:map[$VBDs:[6f1befd2-22eb-afa5-aaf9-98de219978b4 ff349489-259c-c561-7726-d3ad850e07fa] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:1] VGPUs:[] VIFs:[766d7214-3e35-110e-b178-2820b0f98009] addresses:map[0/ipv4/0:192.168.3.31 0/ipv6/0:fe80::7482:7bff:fee6:c9f2] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a6934a4a-6930-b757-87f8-16c1caa5c2ab installTime:1.607773001e+09 mainIpAddress:192.168.3.31 memory:map[dynamic:[1.073741824e+09 1.073742e+09] size:1.073742e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Ldap os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d240f9c7-1a2a-d21f-8143-450760f07262] power_state:Halted snapshots:[] startDelay:0 startTime:1.63707986e+09 tags:[] type:VM uuid:a6934a4a-6930-b757-87f8-16c1caa5c2ab vga:std videoram:8 virtualizationMode:hvm] a981c3b3-3e2f-4144-ef85-706e2df5bf54:map[$VBDs:[33c3d709-227a-f015-b8ed-77838be694dd fded2bfc-25e7-1005-5cde-6f5b3d5da000] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[5ae724a1-7807-a6ca-838d-7c97f077a00d] addresses:map[0/ipv4/0:192.168.10.11 0/ipv6/0:fe80::8838:50ff:fe45:6095] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a981c3b3-3e2f-4144-ef85-706e2df5bf54 installTime:<nil> mainIpAddress:192.168.10.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:c981d0c1-fdcc-4d23-a1da-1b02afa9ba8e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:327605af-e6a1-9208-f6da-160c7d727bc8 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[2021.01 XOA] type:VM uuid:a981c3b3-3e2f-4144-ef85-706e2df5bf54 vga:cirrus videoram:8 virtualizationMode:hvm] cdf04491-f6cf-91a6-8413-b3503c09e689:map[$VBDs:[487e79c1-55ef-b61c-83b0-dc5c2d57a985 838a66ca-c7aa-c6ce-624c-9006e273ac4f] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[b2fb8066-358b-1b1f-c3d9-9a1ab38337d7] addresses:map[0/ipv6/0:fe80::543a:8aff:fecd:204b] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:cdf04491-f6cf-91a6-8413-b3503c09e689 installTime:1.599674355e+09 mainIpAddress:fe80::543a:8aff:fecd:204b memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294967296e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri Test os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-10-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a003cf92-2559-aa46-07ce-f4f2889d18b0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:cdf04491-f6cf-91a6-8413-b3503c09e689 vga:std videoram:8 virtualizationMode:hvm] dd1362c6-fcc9-3014-e9d9-d673ad99d53f:map[$VBDs:[9cbe448c-cef1-3a32-8687-09494007060a c9aebc62-11e8-27d7-8497-bd1cde87f0a0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[309a26f4-b1a7-95eb-7038-690acde42a23] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::80ab:ceff:fe1c:3f75] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:dd1362c6-fcc9-3014-e9d9-d673ad99d53f installTime:1.609861939e+09 mainIpAddress:192.168.3.111 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Ubuntu  os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-73-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:20739ac2-5dfa-baa7-6607-ce811c0432c2] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:dd1362c6-fcc9-3014-e9d9-d673ad99d53f vga:std videoram:8 virtualizationMode:hvm] e04ae8d3-c9ef-770f-9553-7261771acd1d:map[$VBDs:[b65b685f-97a7-39e4-61cd-91e4bfb1f72c 41835946-fad4-90ae-68c8-44d02d373fdc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::dc5d:4cff:fe08:5714] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e04ae8d3-c9ef-770f-9553-7261771acd1d installTime:1.639663733e+09 mainIpAddress:192.168.3.76 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Proxy os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29ded3ec-697f-cdb4-8cf1-ed8b5aef6db6] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.639663734e+09 tags:[] type:VM uuid:e04ae8d3-c9ef-770f-9553-7261771acd1d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] e0dad53d-8d06-4663-9e65-324651ec4609:map[$VBDs:[ee3758ed-ca9e-c7b4-19e7-82cf996956f1 26d91313-b5e1-6379-eb3d-8e32c3d47fd4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:8 number:2] VGPUs:[] VIFs:[94e97171-451f-db1f-05e1-e11c2d883796 d098275e-ddf4-aea3-48ec-0674942abf17] addresses:map[1/ipv4/0:192.168.3.100 1/ipv6/0:fe80::d092:6ff:fe6d:68 2/ipv4/0:192.168.10.10 2/ipv6/0:fe80::d490:58ff:fe1b:c0b2] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e0dad53d-8d06-4663-9e65-324651ec4609 installTime:1.591575208e+09 mainIpAddress:192.168.3.100 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 4.294967296e+09]] name_description:Xen Orchestra community edition name_label:XOA-C os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:14dc415f-e59d-b054-84cd-8e12726dd12f] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[053b017d-cd15-8cc4-b3a8-1aa9186df470] startDelay:0 startTime:1.639628847e+09 tags:[XOA] type:VM uuid:e0dad53d-8d06-4663-9e65-324651ec4609 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] ed3f4be7-8edb-9494-dc0c-d280ee0d7168:map[$VBDs:[27693556-c2d5-d02b-45c5-a96b03a48963 41ac3987-1a95-9b1a-51d2-9ae093becc33 74a23937-fa0c-1019-3214-d9154f9560db 4f90c0b3-11bc-5f7f-f993-e244b829aa58 46f1f50d-c4b0-4ac0-63ca-8e5284048841 3bf5ca37-3b62-24f2-e882-e1767176b655 42b64cea-abae-bddb-9ee8-176200d031ac 7a47e006-fd71-9b18-0e34-c85b4ef6c745] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b4c23d16-2de9-b905-7e6e-9f35a334a436] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 installTime:1.621891336e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Backup test os_version:map[] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ea74ecc3-0c68-5d41-8054-2468a3015bba] power_state:Halted snapshots:[5b079275-22f3-a741-7257-dc324c4d4757 fb13a667-a42a-160c-0555-255d464bedaf] startDelay:0 startTime:<nil> tags:[] type:VM uuid:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 vga:std videoram:8 virtualizationMode:hvm] faa6312a-e63b-647a-aefd-b7fb19faa462:map[$VBDs:[e5aba2b0-368f-3b69-3051-f59d419e732b 24ffb7f0-ff4c-8550-fc63-effaf5334750] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[3e92b66b-8237-72fd-6c80-4fff3eeb5c3e] addresses:map[0/ipv4/0:192.168.3.18 0/ipv6/0:fe80::67:37ff:fe89:d207] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:faa6312a-e63b-647a-aefd-b7fb19faa462 installTime:1.60755664e+09 mainIpAddress:192.168.3.18 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294971392e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e95be6b6-f7a0-4495-6b4c-5a0ffdb27cbd] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[f225f0db-9f30-ade1-2512-8d87d06b233c] startDelay:0 startTime:1.63962886e+09 tags:[] type:VM uuid:faa6312a-e63b-647a-aefd-b7fb19faa462 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]]]: result with error: <nil>: timestamp=2021-12-16T11:11:23.345-0500
2021-12-16T11:11:23.347-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:23 [DEBUG] Found the following objects for type 'client.Vm' from xo.getAllObjects: [{Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147487744} PowerState:Running VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:b2fae86d-40b5-433b-8fd2-09444f2e06d2 Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}]: timestamp=2021-12-16T11:11:23.347-0500
2021-12-16T11:11:23.347-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:23 [DEBUG] Found vm: {Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147487744} PowerState:Running VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:b2fae86d-40b5-433b-8fd2-09444f2e06d2 Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}: timestamp=2021-12-16T11:11:23.347-0500
2021-12-16T11:11:23.347-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:23 [TRACE] Waiting 6.4s before next try: timestamp=2021-12-16T11:11:23.347-0500
xenorchestra_vm.vm: Still creating... [10s elapsed]
2021-12-16T11:11:29.761-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:29 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM]] and received map[0210f0ab-22d6-169e-dc38-e20e12023805:map[$VBDs:[cc03ed10-7ab8-cede-f650-a89d711e1aab a1cbdbe4-ea21-b849-6e15-2546aec53e1c] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e67e0231-c53b-433e-42cf-5ba8a612ccb8] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0210f0ab-22d6-169e-dc38-e20e12023805 installTime:1.611624727e+09 mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:91a9a3d7-80d7-6c09-fc0f-e591b567bea0] power_state:Halted snapshots:[] startDelay:0 startTime:1.63712329e+09 tags:[] type:VM uuid:0210f0ab-22d6-169e-dc38-e20e12023805 vga:std videoram:8 virtualizationMode:hvm] 048f72fc-29ab-02c2-d810-93368fb69c3a:map[$VBDs:[040c03aa-7967-e986-6cf8-4cfb090cf68c 624b339d-d2bd-02b0-e682-f1a91b11b8d2] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[d30f0084-ae9d-c8a4-5429-57ebddca6de4] addresses:map[0/ipv4/0:192.168.1.11 0/ipv6/0:fe80::740e:feff:feb5:809d] auto_poweron:true bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:048f72fc-29ab-02c2-d810-93368fb69c3a installTime:<nil> mainIpAddress:192.168.1.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:11 minor:11 name:Debian GNU/Linux 11 (bullseye) uname:5.10.0-8-amd64] other:map[auto_poweron:true base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:52e47ccd-7484-48fd-a3cd-310e4d67d75f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:05e09501-3c45-4420-7668-630586cd1584 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[XOA 2021.08] type:VM uuid:048f72fc-29ab-02c2-d810-93368fb69c3a vga:std videoram:8 virtualizationMode:hvm] 105f5092-6e49-ddf0-e1af-cac8a8ddb7ee:map[$VBDs:[724e34d5-9379-0ddd-ed54-b09de9139da6 3bbd6df6-800f-0f96-efaf-72cc5894d2dc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[88261157-b603-6e39-dbc3-4e745e6a8753] addresses:map[0/ipv4/0:192.168.3.24 0/ipv6/0:fe80::f4c9:cdff:fe07:c37] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee installTime:1.604541504e+09 mainIpAddress:192.168.3.24 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.07374592e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Tiny os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:8a4624d6-9022-2802-4261-a189904d85a8] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[630621b4-295a-62a9-bb5c-3c66f7b0ca92] startDelay:0 startTime:1.639628858e+09 tags:[] type:VM uuid:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 19d8f18b-41d7-3cf2-35a0-a65011826a4d:map[$VBDs:[1c31bc0f-c518-6c21-0f3e-9e68eae062a5 3e9fadba-8c71-0b0e-8f6c-8b5d5ac7ccff] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[bd6d8458-18e6-2f52-9b7b-b38e5ab85a94] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::b803:e0ff:fe01:16a9] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:19d8f18b-41d7-3cf2-35a0-a65011826a4d installTime:1.613068062e+09 mainIpAddress:192.168.3.111 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Bind Jenkins Prometheus os_version:map[] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d36e991c-8f11-833f-9723-824005d117e3] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.63962885e+09 tags:[] type:VM uuid:19d8f18b-41d7-3cf2-35a0-a65011826a4d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 2a75143d-013d-24e3-6987-de285d5c4400:map[$VBDs:[2587ed45-675c-170b-ea29-6cfa191bcc51 65c4344f-bf0f-c1a1-128f-47c749f6fdb6 969643e7-7db7-bbf7-a678-9361c26daa91 539ca856-ee96-d94e-1f83-3322b515b61e 9c2fcb21-d667-b683-cf6a-96f38a4cf2cb 8a2797a0-77fa-037e-f0b5-49eabadee22c efc5400b-c109-43ef-ff33-426a1e7b0ce2 3c641b2a-e4de-f85a-09f4-264aed40a394] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b1f00623-3632-593e-b4b4-0ee8e18819d9] addresses:map[0/ipv4/0:192.168.3.79 0/ipv6/0:fe80::a077:16ff:fe53:96e3] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:2a75143d-013d-24e3-6987-de285d5c4400 installTime:1.618107996e+09 mainIpAddress:192.168.3.79 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Host-test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7689a1b7-756a-913a-5aa7-a0533c40ac70] power_state:Halted snapshots:[4830be8e-9159-049f-ee7d-c0aa9a225ee4 403fe925-0b0d-7ac0-4ce7-549f10c6bf99] startDelay:0 startTime:1.629412229e+09 tags:[] type:VM uuid:2a75143d-013d-24e3-6987-de285d5c4400 vga:std videoram:8 virtualizationMode:hvm] 408592b2-694a-b671-d4a3-82c19bde3903:map[$VBDs:[285d8c21-883a-2b38-2c4a-a987ee19f1b3 c035dd37-c1d1-a487-77df-a9c8e46cc9b5 99760672-219d-c9b2-312a-81173ccdd226 3873aaaf-1651-92c0-5054-c6c3079d32c5 ff823849-e776-efb3-40de-272f6a30c2fc 29c53819-fc24-1900-47de-c4e50888994c 8eb0bb48-4bd8-43ca-df31-d6ae09a894a9 ae503c5d-c57b-2b8b-bc51-8b34d4b9f6c0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[fdf4167c-1793-1659-7392-015c0c46fd34] addresses:map[0/ipv4/0:192.168.3.78 0/ipv6/0:fe80::f406:dcff:fec4:8f68] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:408592b2-694a-b671-d4a3-82c19bde3903 installTime:1.618108074e+09 mainIpAddress:192.168.3.78 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Cert test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:205e1952-13ae-c38f-f8be-e45d89c3a3db] power_state:Halted snapshots:[7f43cd67-5fd2-10ea-c91c-26e181f718fc] startDelay:0 startTime:1.639623638e+09 tags:[] type:VM uuid:408592b2-694a-b671-d4a3-82c19bde3903 vga:std videoram:8 virtualizationMode:hvm] 57f2f596-32c7-e82e-378a-e039a0075658:map[$VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:57f2f596-32c7-e82e-378a-e039a0075658 installTime:1.639671075e+09 managementAgentDetected:false memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Test os_version:map[] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:587d8953-04d7-2cb5-c77d-f5dc73fe8266] power_state:Running pvDriversDetected:false snapshots:[] startDelay:0 startTime:1.639671077e+09 tags:[] type:VM uuid:57f2f596-32c7-e82e-378a-e039a0075658 vga:std videoram:8 virtualizationMode:hvm xenTools:false] 65faba2e-94de-fd62-ee76-044e9da2e50d:map[$VBDs:[38b066cd-2ecd-e1b1-f867-19e5831e284b adb06f7d-3242-816e-7fc4-71e709fc7fc4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a bae03704-fc2c-d0a9-b300-8cae1b77a858 48880504-edb5-b6cb-b78f-a0561720196c af630cc2-f952-c4c6-5649-1085e965a1f0 f3594756-763c-6ad0-6c0b-7fd61f210ee0 26fad0d5-95e8-3a78-3cab-56902d939881 e2f92181-06af-5bd9-1690-df238e58227c] addresses:map[0/ipv4/0:192.168.1.150 1/ipv4/0:192.168.0.45 2/ipv4/0:192.168.3.1 3/ipv4/0: 4/ipv4/0: 5/ipv4/0: 6/ipv4/0:] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:65faba2e-94de-fd62-ee76-044e9da2e50d installTime:1.63863235e+09 mainIpAddress:192.168.1.150 managementAgentDetected:true memory:map[dynamic:[2.68435456e+08 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description: name_label:Pfsense os_version:map[distro:FreeBSD name:FreeBSD 12.2-STABLE uname:12.2-STABLE] other:map[auto_poweron:true base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:aa51b64b-1fc9-4b99-ab38-52000b5b17e6 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:92b6f3da-6d1e-ef72-89fe-163b37eb534d] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:6.2 snapshots:[770ce00f-df09-5f68-0bff-4fb108421a1d 8cbeb2c5-c057-45df-396c-3a0c2c1f709f] startDelay:0 startTime:1.639654874e+09 tags:[] type:VM uuid:65faba2e-94de-fd62-ee76-044e9da2e50d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:6 minor:2 version:6.2]] 85ea1b49-87df-8f14-5067-087b69164424:map[$VBDs:[6ac5e484-56e4-b8a7-0011-b6c60551b8f7 c4418a00-3aac-3554-3066-b0613354560e] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[53f7d501-2ce5-be27-8d7f-bbfd97812a67] addresses:map[0/ipv4/0:192.168.3.10 0/ipv6/0:fe80::b848:a4ff:febd:c0c0] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:4 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:85ea1b49-87df-8f14-5067-087b69164424 installTime:1.591902262e+09 mainIpAddress:192.168.3.10 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.44245504e+09 static:[5.36870912e+08 6.442450944e+09]] name_description: name_label:Matrix & Jitsi os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:04cab5d4-bf8f-146d-91c5-b562bccc00b0] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[2ba2ac92-e30a-bc99-c6ec-63240ae275b3 d114b5fd-8b4d-cb5b-4664-eaed7195fa8e 4cdc6cc2-9b82-3022-3551-24bc3fa74d68 aa4b0c66-b42c-4872-46de-c0e597e00f55 8484e91e-4eee-b143-f619-4d08c24ee090] startDelay:0 startTime:1.639628863e+09 tags:[] type:VM uuid:85ea1b49-87df-8f14-5067-087b69164424 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 9c2632dc-4424-bbd4-b4be-e0787aab713f:map[$VBDs:[bf0ba9ff-df19-c6e0-541b-418a4d54b639 318b58f7-c7e0-7665-d36a-7075e1ad2bc0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[996d7fa5-42fe-37fb-81e6-ac9dd3fece17] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:9c2632dc-4424-bbd4-b4be-e0787aab713f installTime:1.62934031e+09 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Debian Buster 10 os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:b1f9b815-c847-4567-a58a-d073910dd135 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d0fcf6ec-2344-a934-6f89-388c6c3652f6] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:9c2632dc-4424-bbd4-b4be-e0787aab713f vga:std videoram:8 virtualizationMode:hvm] a6934a4a-6930-b757-87f8-16c1caa5c2ab:map[$VBDs:[6f1befd2-22eb-afa5-aaf9-98de219978b4 ff349489-259c-c561-7726-d3ad850e07fa] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:1] VGPUs:[] VIFs:[766d7214-3e35-110e-b178-2820b0f98009] addresses:map[0/ipv4/0:192.168.3.31 0/ipv6/0:fe80::7482:7bff:fee6:c9f2] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a6934a4a-6930-b757-87f8-16c1caa5c2ab installTime:1.607773001e+09 mainIpAddress:192.168.3.31 memory:map[dynamic:[1.073741824e+09 1.073742e+09] size:1.073742e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Ldap os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d240f9c7-1a2a-d21f-8143-450760f07262] power_state:Halted snapshots:[] startDelay:0 startTime:1.63707986e+09 tags:[] type:VM uuid:a6934a4a-6930-b757-87f8-16c1caa5c2ab vga:std videoram:8 virtualizationMode:hvm] a981c3b3-3e2f-4144-ef85-706e2df5bf54:map[$VBDs:[33c3d709-227a-f015-b8ed-77838be694dd fded2bfc-25e7-1005-5cde-6f5b3d5da000] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[5ae724a1-7807-a6ca-838d-7c97f077a00d] addresses:map[0/ipv4/0:192.168.10.11 0/ipv6/0:fe80::8838:50ff:fe45:6095] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a981c3b3-3e2f-4144-ef85-706e2df5bf54 installTime:<nil> mainIpAddress:192.168.10.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:c981d0c1-fdcc-4d23-a1da-1b02afa9ba8e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:327605af-e6a1-9208-f6da-160c7d727bc8 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[2021.01 XOA] type:VM uuid:a981c3b3-3e2f-4144-ef85-706e2df5bf54 vga:cirrus videoram:8 virtualizationMode:hvm] cdf04491-f6cf-91a6-8413-b3503c09e689:map[$VBDs:[487e79c1-55ef-b61c-83b0-dc5c2d57a985 838a66ca-c7aa-c6ce-624c-9006e273ac4f] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[b2fb8066-358b-1b1f-c3d9-9a1ab38337d7] addresses:map[0/ipv6/0:fe80::543a:8aff:fecd:204b] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:cdf04491-f6cf-91a6-8413-b3503c09e689 installTime:1.599674355e+09 mainIpAddress:fe80::543a:8aff:fecd:204b memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294967296e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri Test os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-10-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a003cf92-2559-aa46-07ce-f4f2889d18b0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:cdf04491-f6cf-91a6-8413-b3503c09e689 vga:std videoram:8 virtualizationMode:hvm] dd1362c6-fcc9-3014-e9d9-d673ad99d53f:map[$VBDs:[9cbe448c-cef1-3a32-8687-09494007060a c9aebc62-11e8-27d7-8497-bd1cde87f0a0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[309a26f4-b1a7-95eb-7038-690acde42a23] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::80ab:ceff:fe1c:3f75] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:dd1362c6-fcc9-3014-e9d9-d673ad99d53f installTime:1.609861939e+09 mainIpAddress:192.168.3.111 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Ubuntu  os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-73-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:20739ac2-5dfa-baa7-6607-ce811c0432c2] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:dd1362c6-fcc9-3014-e9d9-d673ad99d53f vga:std videoram:8 virtualizationMode:hvm] e04ae8d3-c9ef-770f-9553-7261771acd1d:map[$VBDs:[b65b685f-97a7-39e4-61cd-91e4bfb1f72c 41835946-fad4-90ae-68c8-44d02d373fdc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::dc5d:4cff:fe08:5714] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e04ae8d3-c9ef-770f-9553-7261771acd1d installTime:1.639663733e+09 mainIpAddress:192.168.3.76 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Proxy os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29ded3ec-697f-cdb4-8cf1-ed8b5aef6db6] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.639663734e+09 tags:[] type:VM uuid:e04ae8d3-c9ef-770f-9553-7261771acd1d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] e0dad53d-8d06-4663-9e65-324651ec4609:map[$VBDs:[ee3758ed-ca9e-c7b4-19e7-82cf996956f1 26d91313-b5e1-6379-eb3d-8e32c3d47fd4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:8 number:2] VGPUs:[] VIFs:[94e97171-451f-db1f-05e1-e11c2d883796 d098275e-ddf4-aea3-48ec-0674942abf17] addresses:map[1/ipv4/0:192.168.3.100 1/ipv6/0:fe80::d092:6ff:fe6d:68 2/ipv4/0:192.168.10.10 2/ipv6/0:fe80::d490:58ff:fe1b:c0b2] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e0dad53d-8d06-4663-9e65-324651ec4609 installTime:1.591575208e+09 mainIpAddress:192.168.3.100 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 4.294967296e+09]] name_description:Xen Orchestra community edition name_label:XOA-C os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:14dc415f-e59d-b054-84cd-8e12726dd12f] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[053b017d-cd15-8cc4-b3a8-1aa9186df470] startDelay:0 startTime:1.639628847e+09 tags:[XOA] type:VM uuid:e0dad53d-8d06-4663-9e65-324651ec4609 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] ed3f4be7-8edb-9494-dc0c-d280ee0d7168:map[$VBDs:[27693556-c2d5-d02b-45c5-a96b03a48963 41ac3987-1a95-9b1a-51d2-9ae093becc33 74a23937-fa0c-1019-3214-d9154f9560db 4f90c0b3-11bc-5f7f-f993-e244b829aa58 46f1f50d-c4b0-4ac0-63ca-8e5284048841 3bf5ca37-3b62-24f2-e882-e1767176b655 42b64cea-abae-bddb-9ee8-176200d031ac 7a47e006-fd71-9b18-0e34-c85b4ef6c745] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b4c23d16-2de9-b905-7e6e-9f35a334a436] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 installTime:1.621891336e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Backup test os_version:map[] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ea74ecc3-0c68-5d41-8054-2468a3015bba] power_state:Halted snapshots:[5b079275-22f3-a741-7257-dc324c4d4757 fb13a667-a42a-160c-0555-255d464bedaf] startDelay:0 startTime:<nil> tags:[] type:VM uuid:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 vga:std videoram:8 virtualizationMode:hvm] faa6312a-e63b-647a-aefd-b7fb19faa462:map[$VBDs:[e5aba2b0-368f-3b69-3051-f59d419e732b 24ffb7f0-ff4c-8550-fc63-effaf5334750] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[3e92b66b-8237-72fd-6c80-4fff3eeb5c3e] addresses:map[0/ipv4/0:192.168.3.18 0/ipv6/0:fe80::67:37ff:fe89:d207] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:faa6312a-e63b-647a-aefd-b7fb19faa462 installTime:1.60755664e+09 mainIpAddress:192.168.3.18 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294971392e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e95be6b6-f7a0-4495-6b4c-5a0ffdb27cbd] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[f225f0db-9f30-ade1-2512-8d87d06b233c] startDelay:0 startTime:1.63962886e+09 tags:[] type:VM uuid:faa6312a-e63b-647a-aefd-b7fb19faa462 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]]]: result with error: <nil>: timestamp=2021-12-16T11:11:29.761-0500
2021-12-16T11:11:29.764-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:29 [DEBUG] Found the following objects for type 'client.Vm' from xo.getAllObjects: [{Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147487744} PowerState:Running VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:b2fae86d-40b5-433b-8fd2-09444f2e06d2 Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}]: timestamp=2021-12-16T11:11:29.764-0500
2021-12-16T11:11:29.764-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:29 [DEBUG] Found vm: {Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147487744} PowerState:Running VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:b2fae86d-40b5-433b-8fd2-09444f2e06d2 Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}: timestamp=2021-12-16T11:11:29.764-0500
2021-12-16T11:11:29.764-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:29 [TRACE] Waiting 10s before next try: timestamp=2021-12-16T11:11:29.764-0500
xenorchestra_vm.vm: Still creating... [20s elapsed]
2021-12-16T11:11:39.781-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:39 [TRACE] Made rpc call `xo.getAllObjects` with params: map[filter:map[type:VM]] and received map[0210f0ab-22d6-169e-dc38-e20e12023805:map[$VBDs:[cc03ed10-7ab8-cede-f650-a89d711e1aab a1cbdbe4-ea21-b849-6e15-2546aec53e1c] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e67e0231-c53b-433e-42cf-5ba8a612ccb8] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::585b:e2ff:fea0:3d4] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:0210f0ab-22d6-169e-dc38-e20e12023805 installTime:1.611624727e+09 mainIpAddress:192.168.3.76 memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Buster os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:91a9a3d7-80d7-6c09-fc0f-e591b567bea0] power_state:Halted snapshots:[] startDelay:0 startTime:1.63712329e+09 tags:[] type:VM uuid:0210f0ab-22d6-169e-dc38-e20e12023805 vga:std videoram:8 virtualizationMode:hvm] 048f72fc-29ab-02c2-d810-93368fb69c3a:map[$VBDs:[040c03aa-7967-e986-6cf8-4cfb090cf68c 624b339d-d2bd-02b0-e682-f1a91b11b8d2] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[d30f0084-ae9d-c8a4-5429-57ebddca6de4] addresses:map[0/ipv4/0:192.168.1.11 0/ipv6/0:fe80::740e:feff:feb5:809d] auto_poweron:true bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:048f72fc-29ab-02c2-d810-93368fb69c3a installTime:<nil> mainIpAddress:192.168.1.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[2.68435456e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:11 minor:11 name:Debian GNU/Linux 11 (bullseye) uname:5.10.0-8-amd64] other:map[auto_poweron:true base_template_name:Debian Stretch 9.0 import_task:OpaqueRef:52e47ccd-7484-48fd-a3cd-310e4d67d75f install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:05e09501-3c45-4420-7668-630586cd1584 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[XOA 2021.08] type:VM uuid:048f72fc-29ab-02c2-d810-93368fb69c3a vga:std videoram:8 virtualizationMode:hvm] 105f5092-6e49-ddf0-e1af-cac8a8ddb7ee:map[$VBDs:[724e34d5-9379-0ddd-ed54-b09de9139da6 3bbd6df6-800f-0f96-efaf-72cc5894d2dc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[88261157-b603-6e39-dbc3-4e745e6a8753] addresses:map[0/ipv4/0:192.168.3.24 0/ipv6/0:fe80::f4c9:cdff:fe07:c37] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee installTime:1.604541504e+09 mainIpAddress:192.168.3.24 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.07374592e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Tiny os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:8a4624d6-9022-2802-4261-a189904d85a8] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[630621b4-295a-62a9-bb5c-3c66f7b0ca92] startDelay:0 startTime:1.639628858e+09 tags:[] type:VM uuid:105f5092-6e49-ddf0-e1af-cac8a8ddb7ee vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 19d8f18b-41d7-3cf2-35a0-a65011826a4d:map[$VBDs:[1c31bc0f-c518-6c21-0f3e-9e68eae062a5 3e9fadba-8c71-0b0e-8f6c-8b5d5ac7ccff] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[bd6d8458-18e6-2f52-9b7b-b38e5ab85a94] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::b803:e0ff:fe01:16a9] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:19d8f18b-41d7-3cf2-35a0-a65011826a4d installTime:1.613068062e+09 mainIpAddress:192.168.3.111 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Bind Jenkins Prometheus os_version:map[] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d36e991c-8f11-833f-9723-824005d117e3] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.63962885e+09 tags:[] type:VM uuid:19d8f18b-41d7-3cf2-35a0-a65011826a4d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 2a75143d-013d-24e3-6987-de285d5c4400:map[$VBDs:[2587ed45-675c-170b-ea29-6cfa191bcc51 65c4344f-bf0f-c1a1-128f-47c749f6fdb6 969643e7-7db7-bbf7-a678-9361c26daa91 539ca856-ee96-d94e-1f83-3322b515b61e 9c2fcb21-d667-b683-cf6a-96f38a4cf2cb 8a2797a0-77fa-037e-f0b5-49eabadee22c efc5400b-c109-43ef-ff33-426a1e7b0ce2 3c641b2a-e4de-f85a-09f4-264aed40a394] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b1f00623-3632-593e-b4b4-0ee8e18819d9] addresses:map[0/ipv4/0:192.168.3.79 0/ipv6/0:fe80::a077:16ff:fe53:96e3] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:2a75143d-013d-24e3-6987-de285d5c4400 installTime:1.618107996e+09 mainIpAddress:192.168.3.79 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Host-test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:7689a1b7-756a-913a-5aa7-a0533c40ac70] power_state:Halted snapshots:[4830be8e-9159-049f-ee7d-c0aa9a225ee4 403fe925-0b0d-7ac0-4ce7-549f10c6bf99] startDelay:0 startTime:1.629412229e+09 tags:[] type:VM uuid:2a75143d-013d-24e3-6987-de285d5c4400 vga:std videoram:8 virtualizationMode:hvm] 408592b2-694a-b671-d4a3-82c19bde3903:map[$VBDs:[285d8c21-883a-2b38-2c4a-a987ee19f1b3 c035dd37-c1d1-a487-77df-a9c8e46cc9b5 99760672-219d-c9b2-312a-81173ccdd226 3873aaaf-1651-92c0-5054-c6c3079d32c5 ff823849-e776-efb3-40de-272f6a30c2fc 29c53819-fc24-1900-47de-c4e50888994c 8eb0bb48-4bd8-43ca-df31-d6ae09a894a9 ae503c5d-c57b-2b8b-bc51-8b34d4b9f6c0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[fdf4167c-1793-1659-7392-015c0c46fd34] addresses:map[0/ipv4/0:192.168.3.78 0/ipv6/0:fe80::f406:dcff:fec4:8f68] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:408592b2-694a-b671-d4a3-82c19bde3903 installTime:1.618108074e+09 mainIpAddress:192.168.3.78 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Cert test os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-59-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:205e1952-13ae-c38f-f8be-e45d89c3a3db] power_state:Halted snapshots:[7f43cd67-5fd2-10ea-c91c-26e181f718fc] startDelay:0 startTime:1.639623638e+09 tags:[] type:VM uuid:408592b2-694a-b671-d4a3-82c19bde3903 vga:std videoram:8 virtualizationMode:hvm] 57f2f596-32c7-e82e-378a-e039a0075658:map[$VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:57f2f596-32c7-e82e-378a-e039a0075658 installTime:1.639671075e+09 managementAgentDetected:false memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Test os_version:map[] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:587d8953-04d7-2cb5-c77d-f5dc73fe8266] power_state:Running pvDriversDetected:true pvDriversUpToDate:true snapshots:[] startDelay:0 startTime:1.639671077e+09 tags:[] type:VM uuid:57f2f596-32c7-e82e-378a-e039a0075658 vga:std videoram:8 virtualizationMode:hvm xenTools:false] 65faba2e-94de-fd62-ee76-044e9da2e50d:map[$VBDs:[38b066cd-2ecd-e1b1-f867-19e5831e284b adb06f7d-3242-816e-7fc4-71e709fc7fc4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[4459f4e6-4cd2-96a7-6ff5-ebf73eefb63a bae03704-fc2c-d0a9-b300-8cae1b77a858 48880504-edb5-b6cb-b78f-a0561720196c af630cc2-f952-c4c6-5649-1085e965a1f0 f3594756-763c-6ad0-6c0b-7fd61f210ee0 26fad0d5-95e8-3a78-3cab-56902d939881 e2f92181-06af-5bd9-1690-df238e58227c] addresses:map[0/ipv4/0:192.168.1.150 1/ipv4/0:192.168.0.45 2/ipv4/0:192.168.3.1 3/ipv4/0: 4/ipv4/0: 5/ipv4/0: 6/ipv4/0:] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:65faba2e-94de-fd62-ee76-044e9da2e50d installTime:1.63863235e+09 mainIpAddress:192.168.1.150 managementAgentDetected:true memory:map[dynamic:[2.68435456e+08 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description: name_label:Pfsense os_version:map[distro:FreeBSD name:FreeBSD 12.2-STABLE uname:12.2-STABLE] other:map[auto_poweron:true base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:aa51b64b-1fc9-4b99-ab38-52000b5b17e6 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:92b6f3da-6d1e-ef72-89fe-163b37eb534d] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:6.2 snapshots:[770ce00f-df09-5f68-0bff-4fb108421a1d 8cbeb2c5-c057-45df-396c-3a0c2c1f709f] startDelay:0 startTime:1.639654874e+09 tags:[] type:VM uuid:65faba2e-94de-fd62-ee76-044e9da2e50d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:6 minor:2 version:6.2]] 85ea1b49-87df-8f14-5067-087b69164424:map[$VBDs:[6ac5e484-56e4-b8a7-0011-b6c60551b8f7 c4418a00-3aac-3554-3066-b0613354560e] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:4 number:4] VGPUs:[] VIFs:[53f7d501-2ce5-be27-8d7f-bbfd97812a67] addresses:map[0/ipv4/0:192.168.3.10 0/ipv6/0:fe80::b848:a4ff:febd:c0c0] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] coresPerSocket:4 current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:85ea1b49-87df-8f14-5067-087b69164424 installTime:1.591902262e+09 mainIpAddress:192.168.3.10 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 6.442450944e+09] size:6.44245504e+09 static:[5.36870912e+08 6.442450944e+09]] name_description: name_label:Matrix & Jitsi os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:04cab5d4-bf8f-146d-91c5-b562bccc00b0] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[2ba2ac92-e30a-bc99-c6ec-63240ae275b3 d114b5fd-8b4d-cb5b-4664-eaed7195fa8e 4cdc6cc2-9b82-3022-3551-24bc3fa74d68 aa4b0c66-b42c-4872-46de-c0e597e00f55 8484e91e-4eee-b143-f619-4d08c24ee090] startDelay:0 startTime:1.639628863e+09 tags:[] type:VM uuid:85ea1b49-87df-8f14-5067-087b69164424 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] 9c2632dc-4424-bbd4-b4be-e0787aab713f:map[$VBDs:[bf0ba9ff-df19-c6e0-541b-418a4d54b639 318b58f7-c7e0-7665-d36a-7075e1ad2bc0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[996d7fa5-42fe-37fb-81e6-ac9dd3fece17] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:9c2632dc-4424-bbd4-b4be-e0787aab713f installTime:1.62934031e+09 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Debian Buster 10 os_version:<nil> other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:b1f9b815-c847-4567-a58a-d073910dd135 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d0fcf6ec-2344-a934-6f89-388c6c3652f6] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:9c2632dc-4424-bbd4-b4be-e0787aab713f vga:std videoram:8 virtualizationMode:hvm] a6934a4a-6930-b757-87f8-16c1caa5c2ab:map[$VBDs:[6f1befd2-22eb-afa5-aaf9-98de219978b4 ff349489-259c-c561-7726-d3ad850e07fa] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:1] VGPUs:[] VIFs:[766d7214-3e35-110e-b178-2820b0f98009] addresses:map[0/ipv4/0:192.168.3.31 0/ipv6/0:fe80::7482:7bff:fee6:c9f2] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a6934a4a-6930-b757-87f8-16c1caa5c2ab installTime:1.607773001e+09 mainIpAddress:192.168.3.31 memory:map[dynamic:[1.073741824e+09 1.073742e+09] size:1.073742e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Ldap os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:d240f9c7-1a2a-d21f-8143-450760f07262] power_state:Halted snapshots:[] startDelay:0 startTime:1.63707986e+09 tags:[] type:VM uuid:a6934a4a-6930-b757-87f8-16c1caa5c2ab vga:std videoram:8 virtualizationMode:hvm] a981c3b3-3e2f-4144-ef85-706e2df5bf54:map[$VBDs:[33c3d709-227a-f015-b8ed-77838be694dd fded2bfc-25e7-1005-5cde-6f5b3d5da000] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[5ae724a1-7807-a6ca-838d-7c97f077a00d] addresses:map[0/ipv4/0:192.168.10.11 0/ipv6/0:fe80::8838:50ff:fe45:6095] auto_poweron:false bios_strings:map[bios-vendor:Xen bios-version: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:a981c3b3-3e2f-4144-ef85-706e2df5bf54 installTime:<nil> mainIpAddress:192.168.10.11 memory:map[dynamic:[2.147483648e+09 2.147483648e+09] size:2.147483648e+09 static:[1.34217728e+08 2.147483648e+09]] name_description:Xen Orchestra virtual Appliance name_label:XOA os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-13-amd64] other:map[base_template_name:Debian Jessie 8.0 import_task:OpaqueRef:c981d0c1-fdcc-4d23-a1da-1b02afa9ba8e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:327605af-e6a1-9208-f6da-160c7d727bc8 vgpu_pci:] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[2021.01 XOA] type:VM uuid:a981c3b3-3e2f-4144-ef85-706e2df5bf54 vga:cirrus videoram:8 virtualizationMode:hvm] cdf04491-f6cf-91a6-8413-b3503c09e689:map[$VBDs:[487e79c1-55ef-b61c-83b0-dc5c2d57a985 838a66ca-c7aa-c6ce-624c-9006e273ac4f] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[b2fb8066-358b-1b1f-c3d9-9a1ab38337d7] addresses:map[0/ipv6/0:fe80::543a:8aff:fecd:204b] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:cdf04491-f6cf-91a6-8413-b3503c09e689 installTime:1.599674355e+09 mainIpAddress:fe80::543a:8aff:fecd:204b memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294967296e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri Test os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-10-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:a003cf92-2559-aa46-07ce-f4f2889d18b0] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:cdf04491-f6cf-91a6-8413-b3503c09e689 vga:std videoram:8 virtualizationMode:hvm] dd1362c6-fcc9-3014-e9d9-d673ad99d53f:map[$VBDs:[9cbe448c-cef1-3a32-8687-09494007060a c9aebc62-11e8-27d7-8497-bd1cde87f0a0] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[309a26f4-b1a7-95eb-7038-690acde42a23] addresses:map[0/ipv4/0:192.168.3.111 0/ipv6/0:fe80::80ab:ceff:fe1c:3f75] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:dd1362c6-fcc9-3014-e9d9-d673ad99d53f installTime:1.609861939e+09 mainIpAddress:192.168.3.111 memory:map[dynamic:[1.073741824e+09 1.073741824e+09] size:1.073741824e+09 static:[5.36870912e+08 1.073741824e+09]] name_description: name_label:Ubuntu  os_version:map[distro:ubuntu major:20 minor:04 name:Ubuntu 20.04.1 LTS uname:5.4.0-73-generic] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:20739ac2-5dfa-baa7-6607-ce811c0432c2] power_state:Halted snapshots:[] startDelay:0 startTime:<nil> tags:[] type:VM uuid:dd1362c6-fcc9-3014-e9d9-d673ad99d53f vga:std videoram:8 virtualizationMode:hvm] e04ae8d3-c9ef-770f-9553-7261771acd1d:map[$VBDs:[b65b685f-97a7-39e4-61cd-91e4bfb1f72c 41835946-fad4-90ae-68c8-44d02d373fdc] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[2e06a005-3775-efee-49d6-fa18be9d979f] addresses:map[0/ipv4/0:192.168.3.76 0/ipv6/0:fe80::dc5d:4cff:fe08:5714] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e04ae8d3-c9ef-770f-9553-7261771acd1d installTime:1.639663733e+09 mainIpAddress:192.168.3.76 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147487744e+09 static:[5.36870912e+08 2.147483648e+09]] name_description: name_label:Proxy os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[base_template_name:Debian Buster 10 import_task:OpaqueRef:bc079a7b-1adc-4ca0-b1d7-13d0d74f63ad install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:29ded3ec-697f-cdb4-8cf1-ed8b5aef6db6] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[] startDelay:0 startTime:1.639663734e+09 tags:[] type:VM uuid:e04ae8d3-c9ef-770f-9553-7261771acd1d vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] e0dad53d-8d06-4663-9e65-324651ec4609:map[$VBDs:[ee3758ed-ca9e-c7b4-19e7-82cf996956f1 26d91313-b5e1-6379-eb3d-8e32c3d47fd4] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:8 number:2] VGPUs:[] VIFs:[94e97171-451f-db1f-05e1-e11c2d883796 d098275e-ddf4-aea3-48ec-0674942abf17] addresses:map[1/ipv4/0:192.168.3.100 1/ipv6/0:fe80::d092:6ff:fe6d:68 2/ipv4/0:192.168.10.10 2/ipv6/0:fe80::d490:58ff:fe1b:c0b2] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:e0dad53d-8d06-4663-9e65-324651ec4609 installTime:1.591575208e+09 mainIpAddress:192.168.3.100 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 2.147483648e+09] size:2.147483648e+09 static:[5.36870912e+08 4.294967296e+09]] name_description:Xen Orchestra community edition name_label:XOA-C os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:14dc415f-e59d-b054-84cd-8e12726dd12f] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[053b017d-cd15-8cc4-b3a8-1aa9186df470] startDelay:0 startTime:1.639628847e+09 tags:[XOA] type:VM uuid:e0dad53d-8d06-4663-9e65-324651ec4609 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]] ed3f4be7-8edb-9494-dc0c-d280ee0d7168:map[$VBDs:[27693556-c2d5-d02b-45c5-a96b03a48963 41ac3987-1a95-9b1a-51d2-9ae093becc33 74a23937-fa0c-1019-3214-d9154f9560db 4f90c0b3-11bc-5f7f-f993-e244b829aa58 46f1f50d-c4b0-4ac0-63ca-8e5284048841 3bf5ca37-3b62-24f2-e882-e1767176b655 42b64cea-abae-bddb-9ee8-176200d031ac 7a47e006-fd71-9b18-0e34-c85b4ef6c745] $VGPUs:[] $container:f212dec4-4682-6045-6dae-1fe80229e66f $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:1 number:1] VGPUs:[] VIFs:[b4c23d16-2de9-b905-7e6e-9f35a334a436] addresses:map[] auto_poweron:false bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:cdn] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 installTime:1.621891336e+09 memory:map[dynamic:[1.073741824e+09 2.147484e+09] size:2.147484e+09 static:[5.36870912e+08 2.147484e+09]] name_description: name_label:Backup test os_version:map[] other:map[base_template_name:Ubuntu Bionic Beaver 18.04 import_task:OpaqueRef:8329eacf-fbbf-4f0c-90e1-138a11ec1ab4 install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:ea74ecc3-0c68-5d41-8054-2468a3015bba] power_state:Halted snapshots:[5b079275-22f3-a741-7257-dc324c4d4757 fb13a667-a42a-160c-0555-255d464bedaf] startDelay:0 startTime:<nil> tags:[] type:VM uuid:ed3f4be7-8edb-9494-dc0c-d280ee0d7168 vga:std videoram:8 virtualizationMode:hvm] faa6312a-e63b-647a-aefd-b7fb19faa462:map[$VBDs:[e5aba2b0-368f-3b69-3051-f59d419e732b 24ffb7f0-ff4c-8550-fc63-effaf5334750] $VGPUs:[] $container:b2fae86d-40b5-433b-8fd2-09444f2e06d2 $pool:f212dec4-4682-6045-6dae-1fe80229e66f $poolId:f212dec4-4682-6045-6dae-1fe80229e66f CPUs:map[max:2 number:2] VGPUs:[] VIFs:[3e92b66b-8237-72fd-6c80-4fff3eeb5c3e] addresses:map[0/ipv4/0:192.168.3.18 0/ipv6/0:fe80::67:37ff:fe89:d207] auto_poweron:true bios_strings:map[baseboard-asset-tag: baseboard-location-in-chassis: baseboard-manufacturer: baseboard-product-name: baseboard-serial-number: baseboard-version: bios-vendor:Xen bios-version: enclosure-asset-tag: hp-rombios: oem-1:Xen oem-2:MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d system-manufacturer:Xen system-product-name:HVM domU system-serial-number: system-version:] blockedOperations:map[] boot:map[firmware:bios order:ncd] current_operations:map[] expNestedHvm:false hasVendorDevice:false high_availability: id:faa6312a-e63b-647a-aefd-b7fb19faa462 installTime:1.60755664e+09 mainIpAddress:192.168.3.18 managementAgentDetected:true memory:map[dynamic:[1.073741824e+09 4.294967296e+09] size:4.294971392e+09 static:[5.36870912e+08 4.294967296e+09]] name_description: name_label:Jibri os_version:map[distro:debian major:10 minor:10 name:Debian GNU/Linux 10 (buster) uname:4.19.0-18-amd64] other:map[auto_poweron:true base_template_name:Debian Buster 10 import_task:OpaqueRef:c486848b-a29e-4da6-bb5e-bbdb784d988e install-methods:cdrom,nfs,http,ftp linux_template:true mac_seed:e95be6b6-f7a0-4495-6b4c-5a0ffdb27cbd] power_state:Running pvDriversDetected:true pvDriversUpToDate:true pvDriversVersion:8.0 snapshots:[f225f0db-9f30-ade1-2512-8d87d06b233c] startDelay:0 startTime:1.63962886e+09 tags:[] type:VM uuid:faa6312a-e63b-647a-aefd-b7fb19faa462 vga:std videoram:8 virtualizationMode:hvm xenTools:map[major:8 minor:0 version:8]]]: result with error: <nil>: timestamp=2021-12-16T11:11:39.780-0500
2021-12-16T11:11:39.782-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:39 [DEBUG] Found the following objects for type 'client.Vm' from xo.getAllObjects: [{Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147487744} PowerState:Running VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:b2fae86d-40b5-433b-8fd2-09444f2e06d2 Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}]: timestamp=2021-12-16T11:11:39.782-0500
2021-12-16T11:11:39.782-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:39 [DEBUG] Found vm: {Addresses:map[] BlockedOperations:map[] Boot:{Firmware:bios} Type:VM Id:57f2f596-32c7-e82e-378a-e039a0075658 AffinityHost: NameDescription: NameLabel:Test CPUs:{Number:2 Max:2} ExpNestedHvm:false Memory:{Dynamic:[1073741824 2147484000] Static:[536870912 2147484000] Size:2147487744} PowerState:Running VIFs:[e90ca903-6257-3eeb-b080-ecc223e7d1a6] VBDs:[a04eb70a-46b4-7c96-e074-afd43b86f4e6 e3329fba-92e6-fa14-935c-027c10c08747] VirtualizationMode:hvm PoolId:f212dec4-4682-6045-6dae-1fe80229e66f Template: AutoPoweron:false HA: CloudConfig: ResourceSet: Tags:[] Videoram:{Value:8} Vga:std StartDelay:0 Host:b2fae86d-40b5-433b-8fd2-09444f2e06d2 Disks:[] CloudNetworkConfig: VIFsMap:[] WaitForIps:false Installation:{Method: Repository:}}: timestamp=2021-12-16T11:11:39.782-0500
2021-12-16T11:11:39.782-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:11:39 [TRACE] Waiting 10s before next try: timestamp=2021-12-16T11:11:39.782-0500
xenorchestra_vm.vm: Still creating... [30s elapsed]
xenorchestra_vm.vm: Still creating... [40s elapsed]
xenorchestra_vm.vm: Still creating... [50s elapsed]
xenorchestra_vm.vm: Still creating... [1m0s elapsed]
xenorchestra_vm.vm: Still creating... [1m10s elapsed]
xenorchestra_vm.vm: Still creating... [1m20s elapsed]
xenorchestra_vm.vm: Still creating... [1m30s elapsed]
xenorchestra_vm.vm: Still creating... [1m40s elapsed]
xenorchestra_vm.vm: Still creating... [1m50s elapsed]
xenorchestra_vm.vm: Still creating... [2m0s elapsed]
xenorchestra_vm.vm: Still creating... [2m10s elapsed]
xenorchestra_vm.vm: Still creating... [2m20s elapsed]
xenorchestra_vm.vm: Still creating... [2m30s elapsed]
xenorchestra_vm.vm: Still creating... [2m40s elapsed]
xenorchestra_vm.vm: Still creating... [2m50s elapsed]
xenorchestra_vm.vm: Still creating... [3m0s elapsed]
xenorchestra_vm.vm: Still creating... [3m10s elapsed]
xenorchestra_vm.vm: Still creating... [3m20s elapsed]
xenorchestra_vm.vm: Still creating... [3m30s elapsed]
xenorchestra_vm.vm: Still creating... [3m40s elapsed]
xenorchestra_vm.vm: Still creating... [3m50s elapsed]
xenorchestra_vm.vm: Still creating... [4m0s elapsed]
xenorchestra_vm.vm: Still creating... [4m10s elapsed]
xenorchestra_vm.vm: Still creating... [4m20s elapsed]
xenorchestra_vm.vm: Still creating... [4m30s elapsed]
xenorchestra_vm.vm: Still creating... [4m40s elapsed]
xenorchestra_vm.vm: Still creating... [4m50s elapsed]
xenorchestra_vm.vm: Still creating... [5m0s elapsed]
2021-12-16T11:16:17.046-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:16:17 [WARN] WaitForState timeout after 5m0s: timestamp=2021-12-16T11:16:17.046-0500
2021-12-16T11:16:17.046-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:16:17 [WARN] WaitForState starting 30s refresh grace period: timestamp=2021-12-16T11:16:17.046-0500
xenorchestra_vm.vm: Still creating... [5m10s elapsed]
xenorchestra_vm.vm: Still creating... [5m20s elapsed]
xenorchestra_vm.vm: Still creating... [5m30s elapsed]
2021-12-16T11:16:47.046-0500 [INFO]  provider.terraform-provider-xenorchestra_v0.22.0: 2021/12/16 11:16:47 [ERROR] WaitForState exceeded refresh grace period: timestamp=2021-12-16T11:16:47.046-0500
2021-12-16T11:16:47.071-0500 [ERROR] vertex "xenorchestra_vm.vm" error: timeout while waiting for state to become 'Ready' (last state: 'Waiting', timeout: 5m0s)
╷
│ Error: timeout while waiting for state to become 'Ready' (last state: 'Waiting', timeout: 5m0s)
│ 
│   with xenorchestra_vm.vm,
│   on vm.tf line 20, in resource "xenorchestra_vm" "vm":
│   20: resource "xenorchestra_vm" "vm" {
│ 
╵
2021-12-16T11:16:47.074-0500 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-12-16T11:16:47.075-0500 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/terra-farm/xenorchestra/0.22.0/linux_amd64/terraform-provider-xenorchestra_v0.22.0 pid=62670
2021-12-16T11:16:47.075-0500 [DEBUG] provider: plugin exited
newknowledg commented 2 years ago

I found memory-ratio-hvm:0.25 This is the only thing of interest I have spotted. I apologize as I don't really know what I'm looking for.

[10:46 localhost ~]# xe vm-list | grep uuid | cut -d ':' -f2 | xargs -I{} xe vm-param-list uuid={} | grep -i hvm-shadow
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 0.947
                 HVM-shadow-multiplier ( RW): 0.944
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 0.944
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 0.944
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 1.000
                 HVM-shadow-multiplier ( RW): 0.944

The last line denotes the most recent vm created

newknowledg commented 2 years ago

The issue was caused by using the wrong memory_max value slightly higher than what it should be resulting in the hvm-shadow multiplier being set to less than 1.