diff --git a/providers/os/connection/vagrant.go b/providers/os/connection/vagrant.go index 7799489161..d3efe0280f 100644 --- a/providers/os/connection/vagrant.go +++ b/providers/os/connection/vagrant.go @@ -119,7 +119,7 @@ func migrateVagrantAssetToSsh(id uint32, sshConfig *vagrant.VagrantVmSSHConfig, asset.Name = sshConfig.Host asset.Connections = []*inventory.Config{cc} - asset.IdDetector = []string{ids.IdDetector_Hostname, ids.IdDetector_SshHostkey, ids.IdDetector_MachineID} + asset.IdDetector = []string{ids.IdDetector_Hostname, ids.IdDetector_SshHostkey} return nil } diff --git a/providers/os/provider/detector.go b/providers/os/provider/detector.go index 333a8a9248..fac0449c24 100644 --- a/providers/os/provider/detector.go +++ b/providers/os/provider/detector.go @@ -19,9 +19,9 @@ import ( "go.mondoo.com/cnquery/providers/os/id/sshhostkey" ) +// default id detectors var IdDetectors = []string{ ids.IdDetector_Hostname, - ids.IdDetector_MachineID, ids.IdDetector_CloudDetect, ids.IdDetector_SshHostkey, }