daml/infra/windows.tf
Gary Verhaegen a9e579e278
infra: let CI nodes sleep at night (#17150)
Instead of always having all the nodes up, this tweaks the CI
infrastructure to reduce the number of nodes "at night" and over the
weekend.
2023-07-19 14:27:06 +02:00

39 lines
830 B
HCL

# Copyright (c) 2023 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
locals {
vsts_token = secret_resource.vsts-token.value
vsts_account = "digitalasset"
vsts_pool = "windows-pool"
windows = {
gcp = [
{
name = "ci-w1",
size = 0,
assignment = "default",
disk_size = 400,
},
{
name = "ci-w2"
size = 0,
assignment = "default",
disk_size = 400,
},
],
azure = [
{
name = "dw1",
size = 5,
assignment = "default",
disk_size = 400,
},
{
name = "dw2"
size = 0,
assignment = "default",
disk_size = 400,
},
],
}
}