mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Add examples of working with more "complex" JSON environments. Signed-off-by: Scott S. Lowe <scott.lowe@scottlowe.org>
52 lines
734 B
JSON
52 lines
734 B
JSON
[
|
|
{
|
|
"name": "jessie",
|
|
"box": {
|
|
"vmw": "bento/debian-8.6",
|
|
"vb": "debian/jessie64"
|
|
},
|
|
"ram": "512",
|
|
"vcpu": "1",
|
|
"nics": [
|
|
{
|
|
"type": "private_network",
|
|
"ip_addr": "192.168.100.101"
|
|
}
|
|
],
|
|
"nested": false
|
|
},
|
|
|
|
{
|
|
"name": "trusty",
|
|
"box": {
|
|
"vmw": "bento/ubuntu-14.04",
|
|
"vb": "ubuntu/trusty64"
|
|
},
|
|
"ram": "512",
|
|
"vcpu": "1",
|
|
"nics": [
|
|
{
|
|
"type": "private_network",
|
|
"ip_addr": "192.168.100.102"
|
|
}
|
|
],
|
|
"nested": false
|
|
},
|
|
|
|
{
|
|
"name": "precise",
|
|
"box": {
|
|
"vmw": "bento/ubuntu-12.04",
|
|
"vb": "ubuntu/precise64"
|
|
},
|
|
"ram": "512",
|
|
"vcpu": "1",
|
|
"nics": [
|
|
{
|
|
"type": "private_network",
|
|
"ip_addr": "192.168.100.103"
|
|
}
|
|
],
|
|
"nested": false
|
|
}
|
|
]
|