mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
31a76a4a2a
This morning we started with very restricted CI pools (2/6 for Windows and 7/20 for Linux), apparently because the region we run in (us-east1) has three zones, two of them were unable to allocate new nodes, and the default policy is to distribute nodes evenly between zones. I've manually changed the distribution policy. Unfortunately this option is not yet available in our version of the GCP Terraform plugin. CHANGELOG_BEGIN CHANGELOG_END
13 lines
442 B
HCL
13 lines
442 B
HCL
# Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
output external_ip {
|
|
description = "The external IP assigned to the global fowarding rule."
|
|
value = google_compute_global_address.default.address
|
|
}
|
|
|
|
output bucket_name {
|
|
description = "Name of the GCS bucket that will receive the objects."
|
|
value = google_storage_bucket.default.name
|
|
}
|