github.com/cloudfoundry-incubator/stembuild@v0.0.0-20211223202937-5b61d62226c6/integration/construct/assets/ova_options.json.template (about)

     1  {
     2    "DiskProvisioning": "thin",
     3    "MarkAsTemplate": false,
     4    "Name": "{{.VMName}}",
     5    "IPAllocationPolicy": "fixedPolicy",
     6    "IPProtocol": "IPv4",
     7    "NetworkMapping": [
     8      {
     9        "Name": "custom",
    10        "Network": "{{.VMNetwork}}"
    11      }
    12    ],
    13    "PropertyMapping": [
    14      {
    15        "Key": "ip0",
    16        "Value": "{{.TargetIP}}"
    17      },
    18      {
    19        "Key": "cidr",
    20        "Value": "{{.SubnetMask}}"
    21      },
    22      {
    23        "Key": "gateway",
    24        "Value": "{{.NetworkGateway}}"
    25      },
    26      {
    27        "Key":"DNS",
    28        "Value":"8.8.8.8"
    29      }
    30    ],
    31    "PowerOn": true,
    32    "InjectOvfEnv": false,
    33    "WaitForIP": false
    34  }