Bug 1580434 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

windows workers now also need to run on a dedicated vpc (bug 1531371) which has region specific identifiers in the network config. eg:

```json
  "networkInterfaces": [
    {
      "kind": "compute#networkInterface",
      "subnetwork": "projects/moz-fx-taskcl-winvpchost-3f31/regions/us-west1/subnetworks/kms-us-west1",
      "accessConfigs": [
        {
          "type": "ONE_TO_ONE_NAT"
        }
      ]
    }
  ],
```
we'll need a way to define these in the worker manager without specifying the cloud region.
windows workers now also need to run on a dedicated vpc (bug 1531371) which has region specific identifiers in the network config. eg:

```json
  "networkInterfaces": [
    {
      "kind": "compute#networkInterface",
      "subnetwork": "projects/moz-fx-taskcl-winvpchost-3f31/regions/us-west1/subnetworks/kms-us-west1",
      "accessConfigs": [
        {
          "type": "ONE_TO_ONE_NAT"
        }
      ]
    }
  ],
```
we'll need a way to define these in the worker manager without specifying the cloud region. eg:

```json
  "networkInterfaces": [
    {
      "kind": "compute#networkInterface",
      "subnetwork": "projects/moz-fx-taskcl-winvpchost-3f31/regions/{{region-placeholder}}/subnetworks/kms-{{region-placeholder}}",
      "accessConfigs": [
        {
          "type": "ONE_TO_ONE_NAT"
        }
      ]
    }
  ],
```

Back to Bug 1580434 Comment 1