daml/infra/modules/gcp_cdn_bucket/outputs.tf
Gary Verhaegen 31a76a4a2a
allow CI pools to use any zone (#10069)
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
2021-06-22 10:43:08 +02:00

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
}