daml/infra/ubuntu.tf
Gary Verhaegen 40f6cb26dc
infra: move Ubuntu to Azure (#16690)
The daily restart is now working, I think we can switch over. I'm
keeping the GCP configuration around for the time being in case we need
to roll back for some reason; if everything goes smoothly I'll remove
all of it in a month or so.
2023-04-13 09:21:38 -04:00

36 lines
717 B
HCL

# Copyright (c) 2023 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
locals {
ubuntu = {
gcp = [
{
name = "ci-u1",
disk_size = 400,
size = 0,
assignment = "default",
},
{
name = "ci-u2",
disk_size = 400,
size = 0,
assignment = "default",
},
],
azure = [
{
name = "du1",
disk_size = 400,
size = 15,
assignment = "default",
},
{
name = "du2",
disk_size = 400,
size = 0,
assignment = "default",
},
]
}
}