python-terrascript/docs/tutorials/data2/data2.tf.json

37 lines
726 B
JSON

{
"provider": {
"google": [
{
"credentials": "${file(\"account.json\")}",
"project": "myproject",
"region": "us-central1"
}
]
},
"data": {
"google_compute_image": {
"image": {
"family": "debian-9"
}
}
},
"resource": {
"google_compute_instance": {
"myinstance": {
"name": "myinstance",
"machine_type": "n1-standard-1",
"zone": "us-central1-a",
"boot_disk": {
"initialize_params": {
"image": "data.google_compute_image.image.self_link"
}
},
"network_interface": {
"network": "default",
"access_config": {}
}
}
}
}
}