mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-09 15:37:05 +03:00
25 lines
554 B
HCL
25 lines
554 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 = {
|
|
azure = [
|
|
{
|
|
name = "dw1",
|
|
size = 5,
|
|
assignment = "default",
|
|
disk_size = 400,
|
|
},
|
|
{
|
|
name = "dw2"
|
|
size = 0,
|
|
assignment = "default",
|
|
disk_size = 400,
|
|
},
|
|
],
|
|
}
|
|
}
|