go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/providers/os/connection/vagrant/testdata/vagrant.toml (about) 1 [commands."vagrant ssh-config debian10"] 2 stdout = """Host debian10 3 HostName 127.0.0.1 4 User vagrant 5 Port 2222 6 UserKnownHostsFile /dev/null 7 StrictHostKeyChecking no 8 PasswordAuthentication no 9 IdentityFile .vagrant/machines/debian10/virtualbox/private_key 10 IdentitiesOnly yes 11 LogLevel FATAL 12 """ 13 14 [commands."vagrant ssh-config ubuntu2004"] 15 stdout = """Host ubuntu2004 16 HostName 127.0.0.1 17 User vagrant 18 Port 2202 19 UserKnownHostsFile /dev/null 20 StrictHostKeyChecking no 21 PasswordAuthentication no 22 IdentityFile .vagrant/machines/ubuntu2004/virtualbox/private_key 23 IdentitiesOnly yes 24 LogLevel FATAL 25 """ 26 27 [commands."vagrant status"] 28 stdout = """Current machine states: 29 30 centos6 not created (virtualbox) 31 centos7 not created (virtualbox) 32 centos8 not created (virtualbox) 33 debian8 not created (virtualbox) 34 debian9 not created (virtualbox) 35 debian10 running (virtualbox) 36 ubuntu1604 not created (virtualbox) 37 ubuntu1804 not created (virtualbox) 38 ubuntu2004 running (virtualbox) 39 40 This environment represents multiple VMs. The VMs are all listed 41 above with their current state. For more information about a specific 42 VM, run `vagrant status NAME`. 43 44 """