You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue 01: I got the machine up and running and with the NAT configuration, and able to access the internet, but with the following error:
virtualbox_vm.node[0]: Creating...
virtualbox_vm.node[0]: Still creating... [10s elapsed]
╷
│ Error: [ERROR] can't convert vbox network to terraform data: No match with get guestproperty output
│
│ with virtualbox_vm.node[0],
│ on infra.tf line 11, in resource "virtualbox_vm" "node":
│ 11: resource "virtualbox_vm" "node" {
│
╵
Changing the configuration to the following and use a hostonly network:
virtualbox_vm.node[0]: Creating...
virtualbox_vm.node[0]: Still creating... [10s elapsed]
╷
│ Error: [ERROR] Starting VM: exit status 1
│
│ with virtualbox_vm.node[0],
│ on infra.tf line 11, in resource "virtualbox_vm" "node":
│ 11: resource "virtualbox_vm" "node" {
│
╵
I'm I downing something wrong?
any advice is appreciated, I'm a Linux expert so, I will move my tests to a Linux machine and then try everything again.
Moreover I used multiple images with the same results.
The text was updated successfully, but these errors were encountered:
I was able to solve this problem by adding the correct hostinterface name. Try to see the hostinterface name and assign that you should be able to create that successfully. Check that in your case how the interface is looking if you try to create a VM manually and assign that interface accordingly.
network_adapter {
type = "bridged"
host_interface = "Intel(R) Dual Band Wireless-AC 8260"
}
Greetings,
I tried to run the provider on windows 10, form a powershell prompt using the following configurations:
Software:
Virtualbox version:
6.1.28r147628
Provider:
0.2.2-alpha.1
Terraform:
Terraform v1.0.11 on windows_amd64
Configuration file:
~
Issue 01: I got the machine up and running and with the NAT configuration, and able to access the internet, but with the following error:
Changing the configuration to the following and use a hostonly network:
I'm I downing something wrong?
any advice is appreciated, I'm a Linux expert so, I will move my tests to a Linux machine and then try everything again.
Moreover I used multiple images with the same results.
The text was updated successfully, but these errors were encountered: